Total Complexity | 3 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class PageLayout extends ApiAbstract |
||
12 | { |
||
13 | const ENTITY_SINGULAR = 'pageLayout'; |
||
14 | const ENTITY_PLURAL = 'pageLayouts'; |
||
15 | |||
16 | /** |
||
17 | * PageLayout constructor. |
||
18 | * |
||
19 | * @param LoggerInterface $logger |
||
20 | * @param RepoService $repoService |
||
21 | */ |
||
22 | public function __construct(LoggerInterface $logger, RepoService $repoService) |
||
23 | { |
||
24 | parent::__construct($logger, $repoService); |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @return array |
||
29 | */ |
||
30 | public function getSharedData(): array |
||
41 | } |
||
42 | } |
||
43 |