| 1 | <?php |
||
| 4 | trait OffsetBuilder { |
||
| 5 | /** @var int */ |
||
| 6 | private $offset = null; |
||
| 7 | |||
| 8 | /** |
||
| 9 | * @return int |
||
| 10 | */ |
||
| 11 | protected function getOffset() { |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param int $offset |
||
| 17 | * @return $this |
||
| 18 | */ |
||
| 19 | public function offset($offset) { |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param string $query |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | protected function buildOffset($query) { |
||
| 34 | } |
||
| 35 |