https://github.com/yiisoft/db/blob/master/src/Query/QueryPartsInterface.php#L642
Methods like where() are often the source of problems cause sometimes these are used instead of andWhere(), orWhere().
Possible solutions:
- Remove such methods. Add reset*() for the rare cases it is needed.
- Make where() the same as andWhere().
Add reset*() for the rare cases it is needed.
https://github.com/yiisoft/db/blob/master/src/Query/QueryPartsInterface.php#L642
Methods like where() are often the source of problems cause sometimes these are used instead of andWhere(), orWhere().
Possible solutions:
Add reset*() for the rare cases it is needed.