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