| 1 | <?php |
||
| 16 | trait WhereTrait |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @param SelectQuery $query |
||
| 20 | * @param string $table Table name to be automatically inserted into where conditions at |
||
| 21 | * place of {@}. |
||
| 22 | * @param string $target Query target section (accepts: where, having, onWhere, on) |
||
| 23 | * @param array $where Where conditions in a form or short array form. |
||
| 24 | */ |
||
| 25 | public function setWhere(SelectQuery $query, string $table, string $target, array $where = null) |
||
| 35 | } |