Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function rules() |
||
26 | { |
||
27 | return [ |
||
28 | [['title'], 'trim'], |
||
29 | [['title'], 'string', 'max' => 128], |
||
30 | |||
31 | [['meta_keywords'], 'trim'], |
||
32 | [['meta_keywords'], 'string', 'max' => 128], |
||
33 | |||
34 | [['meta_description'], 'trim'], |
||
35 | [['meta_description'], 'string', 'max' => 256], |
||
36 | ]; |
||
37 | } |
||
38 | |||
50 | } |