Total Complexity | 1 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class Block extends ApiAbstract |
||
14 | { |
||
15 | const ENTITY_SINGULAR = 'block'; |
||
16 | const ENTITY_PLURAL = 'blocks'; |
||
17 | |||
18 | /** |
||
19 | * Block constructor. |
||
20 | * |
||
21 | * @param LoggerInterface $logger |
||
22 | * @param RepoService $repoService |
||
23 | * @param FoundRows $foundRows |
||
24 | * @param EnvReader $envReader |
||
25 | */ |
||
26 | public function __construct( |
||
35 |