| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | private function setWhere( |
||
| 27 | SelectQuery $query, |
||
| 28 | string $table, |
||
| 29 | string $target, |
||
| 30 | array $where = null |
||
| 31 | ) { |
||
| 32 | if (empty($where)) { |
||
| 33 | //No conditions, nothing to do |
||
| 34 | return; |
||
| 35 | } |
||
| 36 | |||
| 37 | $decorator = new AliasDecorator($query, $target, $table); |
||
| 38 | $decorator->where($where); |
||
| 39 | } |
||
| 40 | } |