| 1 | <?php |
||
| 17 | class SqlQuery extends AbstractQuery |
||
| 18 | { |
||
| 19 | use Executable; |
||
| 20 | use Fetchable; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | protected $sql; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Sets the SQL for the query. |
||
| 29 | * |
||
| 30 | * @param string $sql |
||
| 31 | * |
||
| 32 | * @return self |
||
| 33 | */ |
||
| 34 | public function raw($sql) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Sets the parameters for this query to be injected |
||
| 43 | * into the prepared statement. |
||
| 44 | * |
||
| 45 | * @return self |
||
| 46 | */ |
||
| 47 | public function parameters(array $values) |
||
| 53 | |||
| 54 | public function build() |
||
| 58 | } |
||
| 59 |