Total Complexity | 3 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | class VlansRepository extends AbstractRepository implements VlansRepositoryInterface |
||
23 | { |
||
24 | protected function getBaseUri(): string |
||
25 | { |
||
26 | return '/networking/vlans'; |
||
27 | } |
||
28 | |||
29 | protected function getSupportedFields(): array |
||
36 | ]; |
||
37 | } |
||
38 | |||
39 | protected function jsonToEntity(array $json): Entity |
||
42 | } |
||
43 | } |
||
44 |