| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | class IPv6PoolRepository extends AbstractRepository implements IPv6PoolRepositoryInterface |
||
| 23 | { |
||
| 24 | protected function getBaseUri(): string |
||
| 27 | } |
||
| 28 | |||
| 29 | protected function getSupportedFields(): array |
||
| 30 | { |
||
| 31 | return [ |
||
| 32 | IPv6Pool::FIELD_RANGE, |
||
| 33 | IPv6Pool::FIELD_PREFIX, |
||
| 34 | IPv6Pool::FIELD_REGION, |
||
| 35 | IPv6Pool::FIELD_ROUTE_TARGET, |
||
| 36 | ]; |
||
| 37 | } |
||
| 38 | |||
| 39 | protected function jsonToEntity(array $json): Entity |
||
| 42 | } |
||
| 43 | } |
||
| 44 |