1 | <?php |
||
18 | class Region extends \yii\db\ActiveRecord |
||
19 | { |
||
20 | /** |
||
21 | * @inheritdoc |
||
22 | */ |
||
23 | public static function tableName() |
||
27 | |||
28 | /** |
||
29 | * @inheritdoc |
||
30 | */ |
||
31 | public function rules() |
||
41 | |||
42 | /** |
||
43 | * @inheritdoc |
||
44 | */ |
||
45 | public function attributeLabels() |
||
53 | |||
54 | /** |
||
55 | * @return \yii\db\ActiveQuery |
||
56 | */ |
||
57 | public function getCountry() |
||
61 | |||
62 | /** |
||
63 | * @inheritdoc |
||
64 | * @return RegionQuery |
||
65 | */ |
||
66 | public static function find() |
||
70 | } |
||
71 |