Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
63 | public function rules() |
||
64 | { |
||
65 | return [ |
||
66 | ['requestId', 'integer'], |
||
67 | ['siteId', 'integer'], |
||
68 | ['title', DbStringValidator::class, 'max' => 120], |
||
69 | ['url', DbStringValidator::class, 'max' => 255], |
||
70 | ['type', DbStringValidator::class, 'max' => 16], |
||
71 | ['pageErrors', ArrayValidator::class], |
||
72 | [ |
||
73 | [ |
||
74 | 'title', |
||
75 | 'type', |
||
76 | 'url', |
||
77 | ], |
||
78 | 'string' |
||
79 | ], |
||
83 |