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