Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
30 | 8 | protected function setupConfigInInteropContainer(ContainerBuilder $containerBuilder): void |
|
31 | { |
||
32 | /** @var SymfonyInteropContainer $containerWrapper */ |
||
33 | 8 | $interopContainerDefinition = $containerBuilder->getDefinition('interop_container'); |
|
34 | 8 | $interopContainerDefinition->addMethodCall( |
|
35 | 8 | 'mergeOverConfigOnKey', |
|
36 | [ |
||
37 | 8 | $this->configBuilder->getKey(), |
|
38 | 8 | $this->configBuilder->build(), |
|
39 | ] |
||
40 | ); |
||
41 | 8 | } |
|
42 | } |
||
43 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..