Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
68 | public function rules() |
||
69 | { |
||
70 | return [ |
||
71 | ['requestId', 'integer'], |
||
72 | ['siteId', 'integer'], |
||
73 | ['title', DbStringValidator::class, 'max' => 120], |
||
74 | ['url', DbStringValidator::class, 'max' => 255], |
||
75 | ['queryString', DbStringValidator::class, 'max' => 255], |
||
76 | ['type', DbStringValidator::class, 'max' => 16], |
||
77 | ['pageErrors', ArrayValidator::class], |
||
78 | [ |
||
79 | [ |
||
80 | 'title', |
||
81 | 'type', |
||
82 | 'url', |
||
83 | 'queryString', |
||
84 | ], |
||
85 | 'string' |
||
86 | ], |
||
90 |