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