Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class FundingRateHistoryResponse extends AbstractResponse implements IFundingRateHistoryResponseInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var IFundingRateHistoryResponseItemInterface[] |
||
15 | */ |
||
16 | private EntityCollection $list; |
||
17 | |||
18 | public function __construct(array $data) |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @return IFundingRateHistoryResponseItemInterface[] |
||
33 | */ |
||
34 | public function getFundingRates(): array |
||
39 |
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..