| 1 | <?php declare(strict_types=1); |
||
| 23 | class ObjectValueHydrator implements ObjectValueHydratorInterface |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * @var ObjectValueHydratorInterface[] |
||
| 27 | */ |
||
| 28 | private $hydrators; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param ObjectValueHydratorInterface[] ...$hydrators |
||
| 32 | */ |
||
| 33 | public function __construct(ObjectValueHydratorInterface ...$hydrators) |
||
| 37 | |||
| 38 | public function hydrateObjectValue(Context $context, ObjectValue $object) |
||
| 44 | } |
||
| 45 |
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..