| Total Complexity | 3 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class CancelAllOrderResponse extends AbstractResponse implements ICancelAllOrderResponseInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var ICancelAllOrderResponseItemInterface[] |
||
| 14 | */ |
||
| 15 | private EntityCollection $list; |
||
| 16 | |||
| 17 | public function __construct(array $data) |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return ICancelAllOrderResponseItemInterface[] |
||
| 32 | */ |
||
| 33 | public function getCancelOrdersList(): array |
||
| 38 |
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..