| 1 | <?php declare(strict_types=1); |
||
| 20 | abstract class AbstractSQL implements SQLInterface { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Limit clause |
||
| 24 | * |
||
| 25 | * @param string $sql |
||
| 26 | * @param int $limit |
||
| 27 | * @param int|bool $offset |
||
| 28 | * @return string |
||
| 29 | */ |
||
| 30 | public function limit(string $sql, int $limit, $offset=FALSE): string |
||
| 41 | } |
||
| 42 |