Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
34 | public function rules() |
||
35 | { |
||
36 | return [ |
||
37 | [['user_id', 'phone', 'name', 'street', 'district', 'city', 'province'], 'required'], |
||
38 | [['user_id'], 'integer'], |
||
39 | [['phone', 'name', 'street', 'district', 'city', 'province', 'country'], 'string', 'max' => 255], |
||
40 | [['postcode'], 'string', 'max' => 10], |
||
41 | ]; |
||
42 | } |
||
43 | |||
63 |