Total Complexity | 4 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class Page extends ApiAbstract |
||
12 | { |
||
13 | const ENTITY_SINGULAR = 'page'; |
||
14 | const ENTITY_PLURAL = 'pages'; |
||
15 | |||
16 | /** |
||
17 | * Page constructor. |
||
18 | * |
||
19 | * @param LoggerInterface $logger |
||
20 | * @param RepoService $repoService |
||
21 | */ |
||
22 | public function __construct(LoggerInterface $logger, RepoService $repoService) |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @return array |
||
29 | */ |
||
30 | public function getSharedData(): array |
||
44 |