| 1 | <?php |
||
| 13 | abstract class AbstractQuery |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var array |
||
| 17 | */ |
||
| 18 | protected $values = []; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Builds a SQL string for the query. |
||
| 22 | * |
||
| 23 | * @return string SQL |
||
| 24 | */ |
||
| 25 | abstract public function build(); |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Gets the parameterized values associated with this query. |
||
| 29 | * |
||
| 30 | * @return array |
||
| 31 | */ |
||
| 32 | public function getValues() |
||
| 36 | } |
||
| 37 |