Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
23 | 2 | public function rules() |
|
24 | { |
||
25 | return [ |
||
26 | 2 | ['id', 'integer'], |
|
27 | ['name', 'string'], |
||
28 | ['description', 'string'], |
||
29 | ['homepage', 'string'], |
||
30 | ['forks_count', 'number'], |
||
31 | ['stargazers_count', 'number'], |
||
32 | ['watchers_count', 'number'], |
||
33 | ['open_issues_count', 'number'], |
||
34 | ]; |
||
35 | } |
||
36 | } |
||
37 |