| 1 | <?php |
||
| 14 | class BatchUpdate extends BatchOperation |
||
| 15 | { |
||
| 16 | protected $batchClass = '\MongoUpdateBatch'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param Expression|array|callable $expression expression to define |
||
| 20 | * @param Operator|array|callable $data new data or operators to update |
||
| 21 | * @param bool|false $multiple |
||
| 22 | * @param bool|false $upsert |
||
| 23 | * @return $this |
||
| 24 | */ |
||
| 25 | public function update( |
||
| 40 | } |
||
| 41 |