1 | <?php |
||
4 | class Shop extends BaseModel |
||
5 | { |
||
6 | /** |
||
7 | * @inheritdoc |
||
8 | */ |
||
9 | public static $tag = false; |
||
10 | |||
11 | public $name; |
||
12 | public $company; |
||
13 | public $url; |
||
14 | public $platform; |
||
15 | public $version; |
||
16 | public $agency; |
||
17 | public $email; |
||
18 | public $cpa; |
||
19 | |||
20 | /** |
||
21 | * @inheritdoc |
||
22 | */ |
||
23 | 5 | public function rules() |
|
50 | |||
51 | /** |
||
52 | * @inheritdoc |
||
53 | */ |
||
54 | 5 | protected function getYmlBody() |
|
64 | } |
||
65 |