| 1 | <?php |
||
| 9 | class UpdateCommand extends TableCommand |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Where conditions (short where format). |
||
| 13 | * |
||
| 14 | * @var array |
||
| 15 | */ |
||
| 16 | private $where = []; |
||
| 17 | |||
| 18 | private $context = []; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param array $where |
||
| 22 | */ |
||
| 23 | public function setWhere(array $where) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Inserting data into associated table. |
||
| 30 | */ |
||
| 31 | public function execute() |
||
| 36 | } |