Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | public function getArrayConfigAndProvidedDependency(): array |
||
28 | { |
||
29 | return [ |
||
30 | 'config-key' => $this->getConfig()->getConfigValue(), |
||
31 | 'string-value' => $this->stringValue->value(), |
||
32 | 'provided-dependency' => $this->getProvidedDependency('provided-dependency'), |
||
33 | 'repository' => $this->getRepository()->getAll(), |
||
34 | 'entity-manager' => $this->getEntityManager()->updateEntity(), |
||
35 | ]; |
||
38 |