| Total Complexity | 1 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class UserApiKey extends GridAbstract |
||
| 16 | { |
||
| 17 | const ENTITY_SINGULAR = 'userApiKey'; |
||
| 18 | const ENTITY_PLURAL = 'userApiKeys'; |
||
| 19 | |||
| 20 | const ENTITY_TITLE_PLURAL = 'admin:userApiKeys'; |
||
| 21 | |||
| 22 | /** @var string */ |
||
| 23 | protected $resource = 'user_api_keys'; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * ApiKey constructor. |
||
| 27 | * |
||
| 28 | * @param FlashService $flashService |
||
| 29 | * @param ITranslator $translator |
||
| 30 | * @param UrlGenerator $urlGenerator |
||
| 31 | * @param AssetManager $assets |
||
| 32 | * @param RepoGrid $repoGrid |
||
| 33 | * @param IEventDispatcher $eventDispatcher |
||
| 34 | */ |
||
| 35 | public function __construct( |
||
| 53 |