| Total Complexity | 1 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | class ApiClient extends GridAbstract |
||
| 17 | { |
||
| 18 | public const ENTITY_SINGULAR = 'apiClient'; |
||
| 19 | public const ENTITY_PLURAL = 'apiClients'; |
||
| 20 | |||
| 21 | public const ENTITY_TITLE_PLURAL = 'admin:apiClients'; |
||
| 22 | |||
| 23 | public const ROUTING_PATH = 'api-clients'; |
||
| 24 | |||
| 25 | protected string $resource = 'api_clients'; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * ApiClient constructor. |
||
| 29 | * |
||
| 30 | * @param FlashService $flashService |
||
| 31 | * @param LoggerInterface $logger |
||
| 32 | * @param ITranslator $translator |
||
| 33 | * @param UrlGenerator $urlGenerator |
||
| 34 | * @param AssetManager $assets |
||
| 35 | * @param RepoGrid $repoGrid |
||
| 36 | * @param IEventDispatcher $eventDispatcher |
||
| 37 | */ |
||
| 38 | public function __construct( |
||
| 58 |