| 1 | <?php declare (strict_types=1); |
||
| 18 | class UpdateQueryBuilder extends QueryBuilder |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var \EmmetBlue\Core\Builder\QueryBuilder |
||
| 22 | */ |
||
| 23 | protected $queryBuilder; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param string|null $tableName |
||
| 27 | */ |
||
| 28 | public function __construct(string $tableName = null) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritdoc} |
||
| 36 | * |
||
| 37 | * @param string $tableName |
||
| 38 | * |
||
| 39 | * @return \EmmetBlue\Core\Builder\UpdateQueryBuilder |
||
| 40 | */ |
||
| 41 | public function table(string $tableName) |
||
| 47 | |||
| 48 | /** |
||
| 49 | * {@inheritdoc} |
||
| 50 | * |
||
| 51 | * @param string[] $inputValues |
||
| 52 | * |
||
| 53 | * @return \EmmetBlue\Core\Builder\UpdateQueryBuilder |
||
| 54 | */ |
||
| 55 | public function set(array $inputValues) |
||
| 65 | } |
||
| 66 |
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..