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