Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
27 | 2 | public function getConfig(): array |
|
28 | { |
||
29 | 2 | $pluralEntityName = $this->dataProvider->provide()['pluralEntityName']; |
|
30 | 2 | $name = '\\' . $this->getControllerNamespace() . '\Get' . $pluralEntityName . 'Action::class'; |
|
31 | return [ |
||
32 | 2 | $name => [ |
|
33 | 2 | $this->dataProvider->provide()['entityClassName'] . 'Repository', |
|
34 | LoggerInterface::class, |
||
35 | 2 | $this->dataProvider->provide()['hydrator_name'], |
|
36 | ] |
||
53 |