Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
27 | public function getRules() |
||
28 | { |
||
29 | return [ |
||
30 | 'name' => ['type' => TypeService::TYPE_STRING, 'final' => true], |
||
31 | 'description' => ['type' => TypeService::TYPE_STRING], |
||
32 | 'args' => ['type' => TypeService::TYPE_ARRAY], |
||
33 | 'locations' => ['type' => TypeService::TYPE_ARRAY], |
||
34 | ]; |
||
35 | } |
||
36 | |||
54 |