Total Complexity | 1 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class FileCategory extends ExecuteAbstract |
||
16 | { |
||
17 | const ENTITY_SINGULAR = 'fileCategory'; |
||
18 | const ENTITY_PLURAL = 'fileCategories'; |
||
19 | |||
20 | const ENTITY_TITLE_SINGULAR = 'files:fileCategory'; |
||
21 | const ENTITY_TITLE_PLURAL = 'files:fileCategories'; |
||
22 | |||
23 | const ROUTING_PATH = 'file-categories'; |
||
24 | |||
25 | /** |
||
26 | * FileCategory constructor. |
||
27 | * |
||
28 | * @param FlashService $flashService |
||
29 | * @param LoggerInterface $logger |
||
30 | * @param ITranslator $translator |
||
31 | * @param UrlGenerator $urlGenerator |
||
32 | * @param RepoService $repoService |
||
33 | * @param ISession $session |
||
34 | */ |
||
35 | public function __construct( |
||
53 |