| 1 | <?php |
||
| 13 | class SetStatement extends Statement |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var array |
||
| 17 | */ |
||
| 18 | protected $setValues = []; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Adds values to the statement. |
||
| 22 | * |
||
| 23 | * @return self |
||
| 24 | */ |
||
| 25 | public function addValues(array $values) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Gets the values being set. |
||
| 34 | * |
||
| 35 | * @return array |
||
| 36 | */ |
||
| 37 | public function getSetValues() |
||
| 41 | |||
| 42 | public function build() |
||
| 62 | } |
||
| 63 |