Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
27 | 7 | public function __construct() |
|
28 | { |
||
29 | 7 | $this->converters = [ |
|
|
|||
30 | 7 | Filter::class => new SQLWhereConverter($this), |
|
31 | 7 | Condition::class => new SQLConditionConverter($this), |
|
32 | 7 | SQLSelect::class => new SQLSelectConverter($this), |
|
33 | 7 | InsertBase::class => new SQLInsertConverter($this), |
|
34 | ]; |
||
35 | 7 | } |
|
36 | |||
60 |
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..