Total Complexity | 3 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class PageLayout extends ApiAbstract |
||
14 | { |
||
15 | const ENTITY_SINGULAR = 'pageLayout'; |
||
16 | const ENTITY_PLURAL = 'pageLayouts'; |
||
17 | |||
18 | /** |
||
19 | * PageLayout constructor. |
||
20 | * |
||
21 | * @param LoggerInterface $logger |
||
22 | * @param RepoService $repoService |
||
23 | * @param FoundRows $foundRows |
||
24 | * @param EnvReader $envReader |
||
25 | */ |
||
26 | public function __construct( |
||
27 | LoggerInterface $logger, |
||
28 | RepoService $repoService, |
||
29 | FoundRows $foundRows, |
||
30 | EnvReader $envReader |
||
31 | ) { |
||
32 | parent::__construct($logger, $repoService, $foundRows, $envReader); |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * @return array |
||
37 | */ |
||
38 | public function getSharedData(): array |
||
49 | } |
||
50 | } |
||
51 |