| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 38 | protected function joinHandler($key, ?string $operator = null, $value = null, string $joiner = 'AND'): self |
||
| 39 | { |
||
| 40 | $key = $this->addTablePrefix($key); |
||
| 41 | $value = $this->addTablePrefix($value); |
||
| 42 | $this->statements['criteria'][] = compact('key', 'operator', 'value', 'joiner'); |
||
| 43 | |||
| 44 | return $this; |
||
| 45 | } |
||
| 47 |