Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
24 | public function rules() |
||
25 | { |
||
26 | return [ |
||
27 | [['id', 'type_id', 'state_id', 'client_id', 'seller_id', 'object_id', 'size'], 'integer'], |
||
28 | [['filename', 'md5', 'type', 'state', 'client', 'seller'], 'safe'], |
||
29 | [['create_time', 'update_time', 'month'], 'safe'], |
||
30 | |||
31 | [['url', 'filename'], 'string', 'on' => ['put']], |
||
32 | ]; |
||
33 | } |
||
34 | } |
||
35 |