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