@@ -220,21 +220,25 @@ public function listIndexes()
220
220
public function remove ($ criteria , $ options = [])
221
221
{
222
222
if ($ criteria instanceof Closure) {
223
+ $ callback = $ criteria ;
224
+
223
225
// Create new Remove query
224
- $ query = new Query \Remove ();
226
+ $ criteria = new Query \Remove ();
225
227
226
228
// Set the given options
227
- $ query ->setOptions ($ options );
229
+ $ criteria ->setOptions ($ options );
228
230
229
231
// Execute the callback
230
- $ criteria ($ query );
231
-
232
- // Retrieve the where filter
233
- $ criteria = $ query ->getWhere ();
232
+ $ callback ($ criteria );
233
+ }
234
234
235
+ if ($ criteria instanceof Query \Remove) {
235
236
// Retrieve the options, these might
236
237
// have been altered in the closure.
237
- $ options = $ query ->getOptions ();
238
+ $ options = $ criteria ->getOptions ();
239
+
240
+ // Retrieve the where filter
241
+ $ criteria = $ criteria ->getWhere ();
238
242
}
239
243
240
244
if (! is_array ($ criteria )) {
@@ -271,7 +275,7 @@ public function remove($criteria, $options = [])
271
275
/**
272
276
* Finds documents.
273
277
*
274
- * @param mixed $query configuration closure, raw mongo conditions array
278
+ * @param mixed $query find query, configuration closure, raw mongo conditions array
275
279
* @param array $fields associative array for field exclusion/inclusion
276
280
* @param boolean $findOne whether to find one or multiple
277
281
*
@@ -282,17 +286,21 @@ public function find($query = [], $fields = [], $findOne = false)
282
286
$ postFind = false ;
283
287
284
288
if ($ query instanceof Closure) {
285
- $ find = new Query \Find ();
289
+ $ callback = $ query ;
290
+
291
+ $ query = new Query \Find ();
286
292
287
293
// set the fields to select
288
- $ find ->fields ($ fields );
289
- $ find ->one ($ findOne );
290
- $ query ($ find );
291
-
292
- $ findOne = $ find ->getFindOne ();
293
- $ fields = $ find ->getFields ();
294
- $ query = $ find ->getWhere ();
295
- $ postFind = $ find ->getPostFindActions ();
294
+ $ query ->fields ($ fields );
295
+ $ query ->one ($ findOne );
296
+ $ callback ($ query );
297
+ }
298
+
299
+ if ($ query instanceof Query \Find) {
300
+ $ findOne = $ query ->getFindOne ();
301
+ $ fields = $ query ->getFields ();
302
+ $ postFind = $ query ->getPostFindActions ();
303
+ $ query = $ query ->getWhere ();
296
304
}
297
305
298
306
if (! is_array ($ query ) || ! is_array ($ fields )) {
@@ -334,7 +342,7 @@ public function find($query = [], $fields = [], $findOne = false)
334
342
/**
335
343
* Finds a single documents.
336
344
*
337
- * @param mixed $query configuration closure, raw mongo conditions array
345
+ * @param mixed $query find query, configuration closure, raw mongo conditions array
338
346
* @param array $fields associative array for field exclusion/inclusion
339
347
*
340
348
* @return array|null document array when found, null when not found
@@ -427,7 +435,7 @@ public function insert(array $data, $options = [])
427
435
/**
428
436
* Updates a collection
429
437
*
430
- * @param mixed $values update array or callback
438
+ * @param mixed $values update query, array or callback
431
439
* @param mixed $query update filter
432
440
* @param array $options update options
433
441
*
@@ -436,13 +444,17 @@ public function insert(array $data, $options = [])
436
444
public function update ($ values = [], $ query = null , $ options = [])
437
445
{
438
446
if ($ values instanceof Closure) {
439
- $ query = new Query \Update ();
440
- $ query ->setOptions ($ options );
441
- $ values ($ query );
447
+ $ callback = $ values ;
442
448
443
- $ options = $ query ->getOptions ();
444
- $ values = $ query ->getUpdate ();
445
- $ query = $ query ->getWhere ();
449
+ $ values = new Query \Update ();
450
+ $ values ->setOptions ($ options );
451
+ $ callback ($ values );
452
+ }
453
+
454
+ if ($ values instanceof Query \Update) {
455
+ $ options = $ values ->getOptions ();
456
+ $ query = $ values ->getWhere ();
457
+ $ values = $ values ->getUpdate ();
446
458
}
447
459
448
460
if (! is_array ($ values ) || ! is_array ($ options )) {
0 commit comments