Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class FileDownload extends ApiAbstract |
||
14 | { |
||
15 | const ENTITY_SINGULAR = 'fileDownload'; |
||
16 | const ENTITY_PLURAL = 'fileDownloads'; |
||
17 | |||
18 | /** |
||
19 | * FileDownload constructor. |
||
20 | * |
||
21 | * @param LoggerInterface $logger |
||
22 | * @param RepoService $repoService |
||
23 | */ |
||
24 | public function __construct(LoggerInterface $logger, RepoService $repoService) |
||
29 |