예제 #1
0
파일: Query.php 프로젝트: bashkarev/r01
 /**
  * @inheritdoc
  */
 public function order($field, $order = SORT_ASC)
 {
     if ($this->getScenario() != self::SCENARIO_GET) {
         throw new Exception('Query::order() only for scenario ' . self::SCENARIO_GET);
     }
     return parent::order($field, $order);
 }
예제 #2
0
파일: Query.php 프로젝트: bashkarev/r01
 /**
  * @return Admin[]|[]
  */
 public function all()
 {
     return parent::all();
 }