| Conditions | 4 |
| Paths | 4 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 20 |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function inject(Container $container) : array |
||
| 29 | { |
||
| 30 | $bindings = $this->bind->getBindings(); |
||
| 31 | foreach ($bindings as &$interceptors) { |
||
| 32 | /* @var string[] $interceptors */ |
||
| 33 | foreach ($interceptors as &$interceptor) { |
||
| 34 | if (\is_string($interceptor)) { |
||
| 35 | $interceptor = $container->getInstance($interceptor, Name::ANY); |
||
| 36 | } |
||
| 37 | } |
||
| 38 | } |
||
| 39 | |||
| 40 | return $bindings; |
||
| 41 | } |
||
| 42 | } |
||
| 43 |