| Conditions | 3 |
| Paths | 3 |
| Total Lines | 13 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 43 | public function offset(int $offset) |
||
| 44 | { |
||
| 45 | if (0 > $offset) { |
||
| 46 | throw new QueryBuilderException('You must pass $offset to offset method!'); |
||
| 47 | } |
||
| 48 | |||
| 49 | if (empty($this->limit)) { |
||
| 50 | throw new QueryBuilderException('You must set LIMIT before calling offset method!'); |
||
| 51 | } |
||
| 52 | |||
| 53 | $this->offset = (int) $offset; |
||
| 54 | |||
| 55 | return $this; |
||
| 56 | } |
||
| 85 |