| 12345678910111213141516171819202122232425262728293031323334 | 
							- <?php
 
- namespace common\models\query;
 
- /**
 
-  * This is the ActiveQuery class for [[\common\models\Region]].
 
-  *
 
-  * @see \common\models\Region
 
-  */
 
- class RegionQuery extends \yii\db\ActiveQuery
 
- {
 
-     /*public function active()
 
-     {
 
-         return $this->andWhere('[[status]]=1');
 
-     }*/
 
-     /**
 
-      * @inheritdoc
 
-      * @return \common\models\Region[]|array
 
-      */
 
-     public function all($db = null)
 
-     {
 
-         return parent::all($db);
 
-     }
 
-     /**
 
-      * @inheritdoc
 
-      * @return \common\models\Region|array|null
 
-      */
 
-     public function one($db = null)
 
-     {
 
-         return parent::one($db);
 
-     }
 
- }
 
 
  |