예제 #1
0
파일: Orders.php 프로젝트: kd-brinex/kd
 public function getOrder()
 {
     return $this->hasOne(OrderSearch::className(), ['id' => 'order_id']);
 }
예제 #2
0
 protected function findModel($id)
 {
     if (($model = OrderSearch::findOne($id)) !== null) {
         return $model;
     } else {
         throw new Exception('This not found');
     }
 }