Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
Complex classes like Builder often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Builder, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
17 | class Builder |
||
18 | { |
||
19 | /** |
||
20 | * The DocumentManager instance for this query |
||
21 | * |
||
22 | * @var DocumentManager |
||
23 | */ |
||
24 | private $dm; |
||
25 | |||
26 | /** |
||
27 | * The ClassMetadata instance. |
||
28 | * |
||
29 | * @var \Doctrine\ODM\MongoDB\Mapping\ClassMetadata |
||
30 | */ |
||
31 | private $class; |
||
32 | |||
33 | /** |
||
34 | * The current field we are operating on. |
||
35 | * |
||
36 | * @todo Change this to private once ODM requires doctrine/mongodb 1.1+ |
||
37 | * @var string |
||
38 | */ |
||
39 | protected $currentField; |
||
40 | |||
41 | /** |
||
42 | * Whether or not to hydrate the data to documents. |
||
43 | * |
||
44 | * @var boolean |
||
45 | */ |
||
46 | private $hydrate = true; |
||
47 | |||
48 | /** |
||
49 | * Whether or not to refresh the data for documents that are already in the identity map. |
||
50 | * |
||
51 | * @var boolean |
||
52 | */ |
||
53 | private $refresh = false; |
||
54 | |||
55 | /** |
||
56 | * Array of primer Closure instances. |
||
57 | * |
||
58 | * @var array |
||
59 | */ |
||
60 | private $primers = array(); |
||
61 | |||
62 | /** |
||
63 | * Whether or not to register documents in UnitOfWork. |
||
64 | * |
||
65 | * @var bool |
||
66 | */ |
||
67 | private $readOnly; |
||
68 | |||
69 | /** |
||
70 | * The Collection instance. |
||
71 | * |
||
72 | * @var Collection |
||
73 | */ |
||
74 | private $collection; |
||
75 | |||
76 | /** |
||
77 | * Array containing the query data. |
||
78 | * |
||
79 | * @var array |
||
80 | */ |
||
81 | private $query = ['type' => Query::TYPE_FIND]; |
||
82 | |||
83 | /** |
||
84 | * The Expr instance used for building this query. |
||
85 | * |
||
86 | * This object includes the query criteria and the "new object" used for |
||
87 | * insert and update queries. |
||
88 | * |
||
89 | * @var Expr $expr |
||
90 | */ |
||
91 | private $expr; |
||
92 | |||
93 | /** |
||
94 | * Construct a Builder |
||
95 | * |
||
96 | * @param DocumentManager $dm |
||
97 | * @param string[]|string|null $documentName (optional) an array of document names, the document name, or none |
||
98 | */ |
||
99 | 291 | public function __construct(DocumentManager $dm, $documentName = null) |
|
107 | |||
108 | 1 | public function __clone() |
|
112 | |||
113 | /** |
||
114 | * Add one or more $and clauses to the current query. |
||
115 | * |
||
116 | * You can create a new expression using the {@link Builder::expr()} method. |
||
117 | * |
||
118 | * @see Expr::addAnd() |
||
119 | * @see http://docs.mongodb.org/manual/reference/operator/and/ |
||
120 | * @param array|Expr $expression |
||
121 | * @return $this |
||
122 | */ |
||
123 | 4 | public function addAnd($expression /* , $expression2, ... */) |
|
128 | |||
129 | /** |
||
130 | * Add one or more $nor clauses to the current query. |
||
131 | * |
||
132 | * You can create a new expression using the {@link Builder::expr()} method. |
||
133 | * |
||
134 | * @see Expr::addNor() |
||
135 | * @see http://docs.mongodb.org/manual/reference/operator/nor/ |
||
136 | * @param array|Expr $expression |
||
137 | * @return $this |
||
138 | */ |
||
139 | public function addNor($expression /* , $expression2, ... */) |
||
140 | { |
||
141 | $this->expr->addNor(...func_get_args()); |
||
142 | return $this; |
||
143 | } |
||
144 | 1 | ||
145 | /** |
||
146 | 1 | * Add one or more $or clauses to the current query. |
|
147 | 1 | * |
|
148 | * You can create a new expression using the {@link Builder::expr()} method. |
||
149 | * |
||
150 | * @see Expr::addOr() |
||
151 | * @see http://docs.mongodb.org/manual/reference/operator/or/ |
||
152 | * @param array|Expr $expression |
||
153 | * @return $this |
||
154 | */ |
||
155 | public function addOr($expression /* , $expression2, ... */) |
||
156 | { |
||
157 | $this->expr->addOr(...func_get_args()); |
||
158 | return $this; |
||
159 | } |
||
160 | 3 | ||
161 | /** |
||
162 | 3 | * Append one or more values to the current array field only if they do not |
|
163 | 3 | * already exist in the array. |
|
164 | * |
||
165 | * If the field does not exist, it will be set to an array containing the |
||
166 | * unique value(s) in the argument. If the field is not an array, the query |
||
167 | * will yield an error. |
||
168 | * |
||
169 | * Multiple values may be specified by provided an Expr object and using |
||
170 | * {@link Expr::each()}. |
||
171 | * |
||
172 | * @see Expr::addToSet() |
||
173 | * @see http://docs.mongodb.org/manual/reference/operator/addToSet/ |
||
174 | * @see http://docs.mongodb.org/manual/reference/operator/each/ |
||
175 | * @param mixed|Expr $valueOrExpression |
||
176 | 6 | * @return $this |
|
177 | */ |
||
178 | 6 | public function addToSet($valueOrExpression) |
|
179 | 6 | { |
|
180 | $this->expr->addToSet($valueOrExpression); |
||
181 | return $this; |
||
182 | } |
||
183 | |||
184 | /** |
||
185 | * Specify $all criteria for the current field. |
||
186 | * |
||
187 | * @see Expr::all() |
||
188 | * @see http://docs.mongodb.org/manual/reference/operator/all/ |
||
189 | * @param array $values |
||
190 | * @return $this |
||
191 | */ |
||
192 | public function all(array $values) |
||
193 | { |
||
194 | $this->expr->all($values); |
||
195 | return $this; |
||
196 | } |
||
197 | |||
198 | /** |
||
199 | 5 | * Apply a bitwise and operation on the current field. |
|
200 | * |
||
201 | 5 | * @see Expr::bitAnd() |
|
202 | 5 | * @see http://docs.mongodb.org/manual/reference/operator/update/bit/ |
|
203 | * @param int $value |
||
204 | * @return $this |
||
205 | */ |
||
206 | public function bitAnd($value) |
||
207 | { |
||
208 | $this->expr->bitAnd($value); |
||
209 | return $this; |
||
210 | } |
||
211 | |||
212 | /** |
||
213 | 3 | * Apply a bitwise or operation on the current field. |
|
214 | * |
||
215 | 3 | * @see Expr::bitOr() |
|
216 | 3 | * @see http://docs.mongodb.org/manual/reference/operator/update/bit/ |
|
217 | * @param int $value |
||
218 | * @return $this |
||
219 | */ |
||
220 | public function bitOr($value) |
||
221 | { |
||
222 | $this->expr->bitOr($value); |
||
223 | return $this; |
||
224 | } |
||
225 | |||
226 | /** |
||
227 | 1 | * Matches documents where all of the bit positions given by the query are |
|
228 | * clear. |
||
229 | 1 | * |
|
230 | 1 | * @see Expr::bitsAllClear() |
|
231 | * @see https://docs.mongodb.org/manual/reference/operator/query/bitsAllClear/ |
||
232 | * @param int|array|\MongoBinData $value |
||
233 | * @return $this |
||
234 | */ |
||
235 | public function bitsAllClear($value) |
||
236 | { |
||
237 | $this->expr->bitsAllClear($value); |
||
238 | return $this; |
||
239 | } |
||
240 | |||
241 | 1 | /** |
|
242 | * Matches documents where all of the bit positions given by the query are |
||
243 | 1 | * set. |
|
244 | 1 | * |
|
245 | * @see Expr::bitsAllSet() |
||
246 | * @see https://docs.mongodb.org/manual/reference/operator/query/bitsAllSet/ |
||
247 | * @param int|array|\MongoBinData $value |
||
248 | * @return $this |
||
249 | */ |
||
250 | public function bitsAllSet($value) |
||
251 | { |
||
252 | $this->expr->bitsAllSet($value); |
||
253 | return $this; |
||
254 | } |
||
255 | |||
256 | 1 | /** |
|
257 | * Matches documents where any of the bit positions given by the query are |
||
258 | 1 | * clear. |
|
259 | 1 | * |
|
260 | * @see Expr::bitsAnyClear() |
||
261 | * @see https://docs.mongodb.org/manual/reference/operator/query/bitsAnyClear/ |
||
262 | * @param int|array|\MongoBinData $value |
||
263 | * @return $this |
||
264 | */ |
||
265 | public function bitsAnyClear($value) |
||
266 | { |
||
267 | $this->expr->bitsAnyClear($value); |
||
268 | return $this; |
||
269 | } |
||
270 | |||
271 | 1 | /** |
|
272 | * Matches documents where any of the bit positions given by the query are |
||
273 | 1 | * set. |
|
274 | 1 | * |
|
275 | * @see Expr::bitsAnySet() |
||
276 | * @see https://docs.mongodb.org/manual/reference/operator/query/bitsAnySet/ |
||
277 | * @param int|array|\MongoBinData $value |
||
278 | * @return $this |
||
279 | */ |
||
280 | public function bitsAnySet($value) |
||
281 | { |
||
282 | $this->expr->bitsAnySet($value); |
||
283 | return $this; |
||
284 | } |
||
285 | |||
286 | 1 | /** |
|
287 | * Apply a bitwise xor operation on the current field. |
||
288 | 1 | * |
|
289 | 1 | * @see Expr::bitXor() |
|
290 | * @see http://docs.mongodb.org/manual/reference/operator/update/bit/ |
||
291 | * @param int $value |
||
292 | * @return $this |
||
293 | */ |
||
294 | public function bitXor($value) |
||
295 | { |
||
296 | $this->expr->bitXor($value); |
||
297 | return $this; |
||
298 | } |
||
299 | |||
300 | /** |
||
301 | 1 | * A boolean flag to enable or disable case sensitive search for $text |
|
302 | * criteria. |
||
303 | 1 | * |
|
304 | 1 | * This method must be called after text(). |
|
305 | * |
||
306 | * @see Expr::caseSensitive() |
||
307 | * @see http://docs.mongodb.org/manual/reference/operator/text/ |
||
308 | * @param bool $caseSensitive |
||
309 | * @return $this |
||
310 | * @throws \BadMethodCallException if the query does not already have $text criteria |
||
311 | * |
||
312 | * @since 1.3 |
||
313 | */ |
||
314 | public function caseSensitive($caseSensitive) |
||
319 | |||
320 | /** |
||
321 | * Associates a comment to any expression taking a query predicate. |
||
322 | * |
||
323 | * @see Expr::comment() |
||
324 | * @see http://docs.mongodb.org/manual/reference/operator/query/comment/ |
||
325 | * @param string $comment |
||
326 | * @return $this |
||
327 | */ |
||
328 | public function comment($comment) |
||
329 | { |
||
330 | $this->expr->comment($comment); |
||
331 | return $this; |
||
332 | } |
||
333 | |||
334 | /** |
||
335 | 1 | * Change the query type to count. |
|
336 | * |
||
337 | 1 | * @return $this |
|
338 | 1 | */ |
|
339 | public function count() |
||
340 | { |
||
341 | $this->query['type'] = Query::TYPE_COUNT; |
||
342 | return $this; |
||
343 | } |
||
344 | |||
345 | /** |
||
346 | * Sets the value of the current field to the current date, either as a date or a timestamp. |
||
347 | * |
||
348 | * @see Expr::currentDate() |
||
349 | 1 | * @see http://docs.mongodb.org/manual/reference/operator/currentDate/ |
|
350 | * @param string $type |
||
351 | 1 | * @return $this |
|
352 | 1 | */ |
|
353 | public function currentDate($type = 'date') |
||
354 | { |
||
355 | $this->expr->currentDate($type); |
||
356 | return $this; |
||
357 | } |
||
358 | |||
359 | /** |
||
360 | * Return an array of information about the Builder state for debugging. |
||
361 | * |
||
362 | * The $name parameter may be used to return a specific key from the |
||
363 | * internal $query array property. If omitted, the entire array will be |
||
364 | * returned. |
||
365 | * |
||
366 | * @param string $name |
||
367 | * @return mixed |
||
368 | */ |
||
369 | public function debug($name = null) |
||
370 | { |
||
371 | return $name !== null ? $this->query[$name] : $this->query; |
||
372 | } |
||
373 | |||
374 | 3 | /** |
|
375 | * A boolean flag to enable or disable diacritic sensitive search for $text |
||
376 | 3 | * criteria. |
|
377 | 2 | * |
|
378 | * This method must be called after text(). |
||
379 | * |
||
380 | * @see Builder::diacriticSensitive() |
||
381 | * @see http://docs.mongodb.org/manual/reference/operator/text/ |
||
382 | * @param bool $diacriticSensitive |
||
383 | * @return $this |
||
384 | * @throws \BadMethodCallException if the query does not already have $text criteria |
||
385 | * |
||
386 | * @since 1.3 |
||
387 | */ |
||
388 | public function diacriticSensitive($diacriticSensitive) |
||
389 | { |
||
390 | 28 | $this->expr->diacriticSensitive($diacriticSensitive); |
|
391 | return $this; |
||
392 | 28 | } |
|
393 | |||
394 | /** |
||
395 | * Change the query type to a distinct command. |
||
396 | * |
||
397 | * @see http://docs.mongodb.org/manual/reference/command/distinct/ |
||
398 | * @param string $field |
||
399 | * @return $this |
||
400 | */ |
||
401 | public function distinct($field) |
||
402 | { |
||
403 | $this->query['type'] = Query::TYPE_DISTINCT; |
||
404 | $this->query['distinct'] = $field; |
||
405 | return $this; |
||
406 | } |
||
407 | |||
408 | /** |
||
409 | 1 | * Set whether the query should return its result as an EagerCursor. |
|
410 | * |
||
411 | 1 | * @param boolean $bool |
|
412 | 1 | * @return $this |
|
413 | */ |
||
414 | public function eagerCursor($bool = true) |
||
415 | { |
||
416 | if ( ! $bool && ! empty($this->primers)) { |
||
417 | throw new \BadMethodCallException("Can't set eagerCursor to false when using reference primers"); |
||
418 | } |
||
419 | |||
420 | $this->query['eagerCursor'] = (boolean) $bool; |
||
421 | return $this; |
||
422 | 2 | } |
|
423 | |||
424 | 2 | /** |
|
425 | 2 | * Specify $elemMatch criteria for the current field. |
|
426 | 2 | * |
|
427 | * You can create a new expression using the {@link Builder::expr()} method. |
||
428 | * |
||
429 | * @see Expr::elemMatch() |
||
430 | * @see http://docs.mongodb.org/manual/reference/operator/elemMatch/ |
||
431 | * @param array|Expr $expression |
||
432 | * @return $this |
||
433 | */ |
||
434 | public function elemMatch($expression) |
||
439 | |||
440 | /** |
||
441 | 4 | * Specify an equality match for the current field. |
|
442 | 4 | * |
|
443 | * @see Expr::equals() |
||
444 | * @param mixed $value |
||
445 | * @return $this |
||
446 | */ |
||
447 | public function equals($value) |
||
448 | { |
||
449 | $this->expr->equals($value); |
||
450 | return $this; |
||
451 | } |
||
452 | |||
453 | /** |
||
454 | * Set one or more fields to be excluded from the query projection. |
||
455 | 6 | * |
|
456 | * If fields have been selected for inclusion, only the "_id" field may be |
||
457 | 6 | * excluded. |
|
458 | 6 | * |
|
459 | * @param array|string $fieldName,... |
||
460 | * @return $this |
||
461 | */ |
||
462 | View Code Duplication | public function exclude($fieldName = null) |
|
463 | { |
||
464 | if ( ! isset($this->query['select'])) { |
||
465 | $this->query['select'] = []; |
||
466 | } |
||
467 | |||
468 | 75 | $fieldNames = is_array($fieldName) ? $fieldName : func_get_args(); |
|
469 | |||
470 | 75 | foreach ($fieldNames as $fieldName) { |
|
471 | 75 | $this->query['select'][$fieldName] = 0; |
|
472 | } |
||
473 | |||
474 | return $this; |
||
475 | } |
||
476 | |||
477 | /** |
||
478 | * Specify $exists criteria for the current field. |
||
479 | * |
||
480 | * @see Expr::exists() |
||
481 | * @see http://docs.mongodb.org/manual/reference/operator/exists/ |
||
482 | * @param boolean $bool |
||
483 | 6 | * @return $this |
|
484 | */ |
||
485 | 6 | public function exists($bool) |
|
490 | |||
491 | 6 | /** |
|
492 | 4 | * Create a new Expr instance that can be used as an expression with the Builder |
|
493 | * |
||
494 | * @return Expr $expr |
||
495 | 6 | */ |
|
496 | public function expr() |
||
497 | { |
||
498 | $expr = new Expr($this->dm); |
||
499 | $expr->setClassMetadata($this->class); |
||
500 | |||
501 | return $expr; |
||
502 | } |
||
503 | |||
504 | /** |
||
505 | * Set the current field to operate on. |
||
506 | 5 | * |
|
507 | * @param string $field |
||
508 | 5 | * @return $this |
|
509 | 5 | */ |
|
510 | public function field($field) |
||
511 | { |
||
517 | 26 | ||
518 | /** |
||
519 | 26 | * Set the "finalize" option for a mapReduce or group command. |
|
520 | 26 | * |
|
521 | * @param string|\MongoCode $finalize |
||
522 | 26 | * @return $this |
|
523 | * @throws \BadMethodCallException if the query is not a mapReduce or group command |
||
524 | */ |
||
525 | View Code Duplication | public function finalize($finalize) |
|
542 | |||
543 | /** |
||
544 | * Change the query type to find and optionally set and change the class being queried. |
||
545 | * |
||
546 | 2 | * @param string $documentName |
|
547 | * @return $this |
||
548 | 2 | */ |
|
549 | public function find($documentName = null) |
||
556 | |||
557 | /** |
||
558 | 1 | * @param string $documentName |
|
559 | * @return $this |
||
560 | */ |
||
561 | 1 | public function findAndRemove($documentName = null) |
|
568 | |||
569 | /** |
||
570 | 12 | * @param string $documentName |
|
571 | * @return $this |
||
572 | 12 | */ |
|
573 | 12 | public function findAndUpdate($documentName = null) |
|
580 | |||
581 | /** |
||
582 | 1 | * Add $geoIntersects criteria with a GeoJSON geometry to the query. |
|
583 | * |
||
584 | 1 | * The geometry parameter GeoJSON object or an array corresponding to the |
|
585 | 1 | * geometry's JSON representation. |
|
586 | * |
||
587 | 1 | * @see Expr::geoIntersects() |
|
588 | * @see http://docs.mongodb.org/manual/reference/operator/geoIntersects/ |
||
589 | * @param array|Geometry $geometry |
||
590 | * @return $this |
||
591 | */ |
||
592 | public function geoIntersects($geometry) |
||
597 | 13 | ||
598 | /** |
||
599 | 13 | * Add $geoWithin criteria with a GeoJSON geometry to the query. |
|
600 | * |
||
601 | * The geometry parameter GeoJSON object or an array corresponding to the |
||
602 | * geometry's JSON representation. |
||
603 | * |
||
604 | * @see Expr::geoWithin() |
||
605 | * @see http://docs.mongodb.org/manual/reference/operator/geoWithin/ |
||
606 | * @param array|Geometry $geometry |
||
607 | * @return $this |
||
608 | */ |
||
609 | public function geoWithin($geometry) |
||
614 | |||
615 | 1 | /** |
|
616 | 1 | * Add $geoWithin criteria with a $box shape to the query. |
|
617 | * |
||
618 | * A rectangular polygon will be constructed from a pair of coordinates |
||
619 | * corresponding to the bottom left and top right corners. |
||
620 | * |
||
621 | * Note: the $box operator only supports legacy coordinate pairs and 2d |
||
622 | * indexes. This cannot be used with 2dsphere indexes and GeoJSON shapes. |
||
623 | * |
||
624 | * @see Expr::geoWithinBox() |
||
625 | * @see http://docs.mongodb.org/manual/reference/operator/box/ |
||
626 | * @param float $x1 |
||
627 | * @param float $y1 |
||
628 | * @param float $x2 |
||
629 | * @param float $y2 |
||
630 | 1 | * @return $this |
|
631 | */ |
||
632 | 1 | public function geoWithinBox($x1, $y1, $x2, $y2) |
|
637 | |||
638 | /** |
||
639 | * Add $geoWithin criteria with a $center shape to the query. |
||
640 | * |
||
641 | * Note: the $center operator only supports legacy coordinate pairs and 2d |
||
642 | * indexes. This cannot be used with 2dsphere indexes and GeoJSON shapes. |
||
643 | * |
||
644 | * @see Expr::geoWithinCenter() |
||
645 | * @see http://docs.mongodb.org/manual/reference/operator/center/ |
||
646 | * @param float $x |
||
647 | * @param float $y |
||
648 | * @param float $radius |
||
649 | * @return $this |
||
650 | */ |
||
651 | public function geoWithinCenter($x, $y, $radius) |
||
656 | 1 | ||
657 | /** |
||
658 | * Add $geoWithin criteria with a $centerSphere shape to the query. |
||
659 | * |
||
660 | * Note: the $centerSphere operator supports both 2d and 2dsphere indexes. |
||
661 | * |
||
662 | * @see Expr::geoWithinCenterSphere() |
||
663 | * @see http://docs.mongodb.org/manual/reference/operator/centerSphere/ |
||
664 | * @param float $x |
||
665 | * @param float $y |
||
666 | * @param float $radius |
||
667 | * @return $this |
||
668 | */ |
||
669 | public function geoWithinCenterSphere($x, $y, $radius) |
||
674 | 1 | ||
675 | 1 | /** |
|
676 | * Add $geoWithin criteria with a $polygon shape to the query. |
||
677 | * |
||
678 | * Point coordinates are in x, y order (easting, northing for projected |
||
679 | * coordinates, longitude, latitude for geographic coordinates). |
||
680 | * |
||
681 | * The last point coordinate is implicitly connected with the first. |
||
682 | * |
||
683 | * Note: the $polygon operator only supports legacy coordinate pairs and 2d |
||
684 | * indexes. This cannot be used with 2dsphere indexes and GeoJSON shapes. |
||
685 | * |
||
686 | * @see Expr::geoWithinPolygon() |
||
687 | * @see http://docs.mongodb.org/manual/reference/operator/polygon/ |
||
688 | * @param array $point,... Three or more point coordinate tuples |
||
689 | * @return $this |
||
690 | 1 | */ |
|
691 | public function geoWithinPolygon(/* array($x1, $y1), ... */) |
||
696 | |||
697 | /** |
||
698 | * Return the expression's "new object". |
||
699 | * |
||
700 | * @see Expr::getNewObj() |
||
701 | * @return array |
||
702 | */ |
||
703 | public function getNewObj() |
||
707 | |||
708 | /** |
||
709 | * Gets the Query executable. |
||
710 | * |
||
711 | * @param array $options |
||
712 | 1 | * @return Query $query |
|
713 | */ |
||
714 | 1 | public function getQuery(array $options = array()) |
|
771 | |||
772 | 149 | /** |
|
773 | 23 | * Return the expression's query criteria. |
|
774 | * |
||
775 | * @see Expr::getQuery() |
||
776 | 149 | * @return array |
|
777 | 1 | */ |
|
778 | public function getQueryArray() |
||
782 | 149 | ||
783 | 149 | /** |
|
784 | 149 | * Get the type of this query. |
|
785 | 149 | * |
|
786 | 149 | * @return integer $type |
|
787 | 149 | */ |
|
788 | 149 | public function getType() |
|
792 | |||
793 | /** |
||
794 | * Specify $gt criteria for the current field. |
||
795 | * |
||
796 | * @see Expr::gt() |
||
797 | * @see http://docs.mongodb.org/manual/reference/operator/gt/ |
||
798 | * @param mixed $value |
||
799 | 33 | * @return $this |
|
800 | */ |
||
801 | 33 | public function gt($value) |
|
806 | |||
807 | /** |
||
808 | * Specify $gte criteria for the current field. |
||
809 | 2 | * |
|
810 | * @see Expr::gte() |
||
811 | 2 | * @see http://docs.mongodb.org/manual/reference/operator/gte/ |
|
812 | * @param mixed $value |
||
813 | * @return $this |
||
814 | */ |
||
815 | public function gte($value) |
||
820 | |||
821 | /** |
||
822 | 2 | * Set the index hint for the query. |
|
823 | * |
||
824 | 2 | * @param array|string $index |
|
825 | 2 | * @return $this |
|
826 | */ |
||
827 | public function hint($index) |
||
832 | |||
833 | /** |
||
834 | * @param bool $bool |
||
835 | * @return $this |
||
836 | 2 | */ |
|
837 | public function hydrate($bool = true) |
||
842 | |||
843 | /** |
||
844 | * Set the immortal cursor flag. |
||
845 | * |
||
846 | * @param boolean $bool |
||
847 | * @return $this |
||
848 | */ |
||
849 | public function immortal($bool = true) |
||
854 | |||
855 | /** |
||
856 | * Specify $in criteria for the current field. |
||
857 | * |
||
858 | 17 | * @see Expr::in() |
|
859 | * @see http://docs.mongodb.org/manual/reference/operator/in/ |
||
860 | 17 | * @param array $values |
|
861 | 17 | * @return $this |
|
862 | */ |
||
863 | public function in(array $values) |
||
868 | |||
869 | /** |
||
870 | * Increment the current field. |
||
871 | * |
||
872 | * If the field does not exist, it will be set to this value. |
||
873 | * |
||
874 | * @see Expr::inc() |
||
875 | * @see http://docs.mongodb.org/manual/reference/operator/inc/ |
||
876 | * @param float|integer $value |
||
877 | * @return $this |
||
878 | */ |
||
879 | public function inc($value) |
||
884 | 24 | ||
885 | /** |
||
886 | 24 | * @param object $document |
|
887 | 24 | * @return $this |
|
888 | */ |
||
889 | public function includesReferenceTo($document) |
||
894 | |||
895 | /** |
||
896 | * @param string $documentName |
||
897 | * @return $this |
||
898 | */ |
||
899 | public function insert($documentName = null) |
||
906 | |||
907 | /** |
||
908 | * Set the $language option for $text criteria. |
||
909 | * |
||
910 | 6 | * This method must be called after text(). |
|
911 | * |
||
912 | 6 | * @see Expr::language() |
|
913 | 4 | * @see http://docs.mongodb.org/manual/reference/operator/text/ |
|
914 | * @param string $language |
||
915 | * @return $this |
||
916 | */ |
||
917 | public function language($language) |
||
922 | 1 | ||
923 | 1 | /** |
|
924 | * Set the limit for the query. |
||
925 | 1 | * |
|
926 | * This is only relevant for find queries and geoNear and mapReduce |
||
927 | * commands. |
||
928 | * |
||
929 | * @see Query::prepareCursor() |
||
930 | * @param integer $limit |
||
931 | * @return $this |
||
932 | */ |
||
933 | public function limit($limit) |
||
938 | 1 | ||
939 | /** |
||
940 | 1 | * Specify $lt criteria for the current field. |
|
941 | 1 | * |
|
942 | * @see Expr::lte() |
||
943 | * @see http://docs.mongodb.org/manual/reference/operator/lte/ |
||
944 | * @param mixed $value |
||
945 | * @return $this |
||
946 | */ |
||
947 | public function lt($value) |
||
952 | |||
953 | /** |
||
954 | 2 | * Specify $lte criteria for the current field. |
|
955 | * |
||
956 | 2 | * @see Expr::lte() |
|
957 | 2 | * @see http://docs.mongodb.org/manual/reference/operator/lte/ |
|
958 | * @param mixed $value |
||
959 | * @return $this |
||
960 | */ |
||
961 | public function lte($value) |
||
966 | |||
967 | /** |
||
968 | * Change the query type to a mapReduce command. |
||
969 | * |
||
970 | * The "reduce" option is not specified when calling this method; it must |
||
971 | * be set with the {@link Builder::reduce()} method. |
||
972 | * |
||
973 | * The "out" option defaults to inline, like {@link Builder::mapReduce()}. |
||
974 | * |
||
975 | * @see http://docs.mongodb.org/manual/reference/command/mapReduce/ |
||
976 | * @param string|\MongoCode $map |
||
977 | * @return $this |
||
978 | */ |
||
979 | public function map($map) |
||
990 | |||
991 | /** |
||
992 | * Change the query type to a mapReduce command. |
||
993 | * |
||
994 | * @see http://docs.mongodb.org/manual/reference/command/mapReduce/ |
||
995 | * @param string|\MongoCode $map |
||
996 | * @param string|\MongoCode $reduce |
||
997 | * @param array|string $out |
||
998 | * @param array $options |
||
999 | * @return $this |
||
1000 | 1 | */ |
|
1001 | public function mapReduce($map, $reduce, $out = ['inline' => true], array $options = []) |
||
1012 | |||
1013 | /** |
||
1014 | * Set additional options for a mapReduce command. |
||
1015 | * |
||
1016 | * @param array $options |
||
1017 | * @return $this |
||
1018 | * @throws \BadMethodCallException if the query is not a mapReduce command |
||
1019 | */ |
||
1020 | View Code Duplication | public function mapReduceOptions(array $options) |
|
1029 | 1 | ||
1030 | /** |
||
1031 | 1 | * Updates the value of the field to a specified value if the specified value is greater than the current value of the field. |
|
1032 | * |
||
1033 | * @see Expr::max() |
||
1034 | * @see http://docs.mongodb.org/manual/reference/operator/update/max/ |
||
1035 | * @param mixed $value |
||
1036 | * @return $this |
||
1037 | */ |
||
1038 | public function max($value) |
||
1043 | 1 | ||
1044 | 1 | /** |
|
1045 | * Specifies a cumulative time limit in milliseconds for processing operations on a cursor. |
||
1046 | * |
||
1047 | * @param int $ms |
||
1048 | * @return $this |
||
1049 | */ |
||
1050 | public function maxTimeMS($ms) |
||
1055 | |||
1056 | /** |
||
1057 | * Updates the value of the field to a specified value if the specified value is less than the current value of the field. |
||
1058 | * |
||
1059 | 1 | * @see Expr::min() |
|
1060 | * @see http://docs.mongodb.org/manual/reference/operator/update/min/ |
||
1061 | 1 | * @param mixed $value |
|
1062 | 1 | * @return $this |
|
1063 | */ |
||
1064 | public function min($value) |
||
1069 | |||
1070 | /** |
||
1071 | * Specify $mod criteria for the current field. |
||
1072 | * |
||
1073 | * @see Expr::mod() |
||
1074 | * @see http://docs.mongodb.org/manual/reference/operator/mod/ |
||
1075 | * @param float|integer $divisor |
||
1076 | * @param float|integer $remainder |
||
1077 | * @return $this |
||
1078 | */ |
||
1079 | public function mod($divisor, $remainder = 0) |
||
1084 | |||
1085 | 1 | /** |
|
1086 | * Multiply the current field. |
||
1087 | 1 | * |
|
1088 | 1 | * If the field does not exist, it will be set to 0. |
|
1089 | * |
||
1090 | * @see Expr::mul() |
||
1091 | * @see http://docs.mongodb.org/manual/reference/operator/mul/ |
||
1092 | * @param float|integer $value |
||
1093 | * @return $this |
||
1094 | */ |
||
1095 | public function mul($value) |
||
1100 | 1 | ||
1101 | /** |
||
1102 | 1 | * Add $near criteria to the query. |
|
1103 | 1 | * |
|
1104 | * A GeoJSON point may be provided as the first and only argument for |
||
1105 | * 2dsphere queries. This single parameter may be a GeoJSON point object or |
||
1106 | * an array corresponding to the point's JSON representation. |
||
1107 | * |
||
1108 | * @see Expr::near() |
||
1109 | * @see http://docs.mongodb.org/manual/reference/operator/near/ |
||
1110 | * @param float|array|Point $x |
||
1111 | * @param float $y |
||
1112 | * @return $this |
||
1113 | */ |
||
1114 | public function near($x, $y = null) |
||
1119 | 1 | ||
1120 | /** |
||
1121 | * Add $nearSphere criteria to the query. |
||
1122 | * |
||
1123 | * A GeoJSON point may be provided as the first and only argument for |
||
1124 | * 2dsphere queries. This single parameter may be a GeoJSON point object or |
||
1125 | * an array corresponding to the point's JSON representation. |
||
1126 | * |
||
1127 | * @see Expr::nearSphere() |
||
1128 | * @see http://docs.mongodb.org/manual/reference/operator/nearSphere/ |
||
1129 | * @param float|array|Point $x |
||
1130 | * @param float $y |
||
1131 | * @return $this |
||
1132 | */ |
||
1133 | public function nearSphere($x, $y = null) |
||
1138 | |||
1139 | /** |
||
1140 | * Negates an expression for the current field. |
||
1141 | * |
||
1142 | * You can create a new expression using the {@link Builder::expr()} method. |
||
1143 | * |
||
1144 | * @see Expr::not() |
||
1145 | * @see http://docs.mongodb.org/manual/reference/operator/not/ |
||
1146 | * @param array|Expr $expression |
||
1147 | * @return $this |
||
1148 | */ |
||
1149 | 1 | public function not($expression) |
|
1154 | |||
1155 | /** |
||
1156 | * Specify $ne criteria for the current field. |
||
1157 | * |
||
1158 | * @see Expr::notEqual() |
||
1159 | * @see http://docs.mongodb.org/manual/reference/operator/ne/ |
||
1160 | * @param mixed $value |
||
1161 | * @return $this |
||
1162 | */ |
||
1163 | public function notEqual($value) |
||
1168 | 1 | ||
1169 | /** |
||
1170 | 1 | * Specify $nin criteria for the current field. |
|
1171 | 1 | * |
|
1172 | * @see Expr::notIn() |
||
1173 | * @see http://docs.mongodb.org/manual/reference/operator/nin/ |
||
1174 | * @param array $values |
||
1175 | * @return $this |
||
1176 | */ |
||
1177 | public function notIn(array $values) |
||
1182 | |||
1183 | /** |
||
1184 | 3 | * Set the "out" option for a mapReduce command. |
|
1185 | * |
||
1186 | 3 | * @param array|string $out |
|
1187 | 3 | * @return $this |
|
1188 | * @throws \BadMethodCallException if the query is not a mapReduce command |
||
1189 | */ |
||
1190 | View Code Duplication | public function out($out) |
|
1199 | |||
1200 | 4 | /** |
|
1201 | 4 | * Remove the first element from the current array field. |
|
1202 | * |
||
1203 | * @see Expr::popFirst() |
||
1204 | * @see http://docs.mongodb.org/manual/reference/operator/pop/ |
||
1205 | * @return $this |
||
1206 | */ |
||
1207 | public function popFirst() |
||
1212 | 4 | ||
1213 | /** |
||
1214 | 4 | * Remove the last element from the current array field. |
|
1215 | 4 | * |
|
1216 | * @see Expr::popLast() |
||
1217 | * @see http://docs.mongodb.org/manual/reference/operator/pop/ |
||
1218 | * @return $this |
||
1219 | */ |
||
1220 | public function popLast() |
||
1225 | 1 | ||
1226 | /** |
||
1227 | 1 | * Use a primer to eagerly load all references in the current field. |
|
1228 | 1 | * |
|
1229 | * If $primer is true or a callable is provided, referenced documents for |
||
1230 | * this field will loaded into UnitOfWork immediately after the query is |
||
1231 | * executed. This will avoid multiple queries due to lazy initialization of |
||
1232 | * Proxy objects. |
||
1233 | * |
||
1234 | * If $primer is false, no priming will take place. That is also the default |
||
1235 | * behavior. |
||
1236 | * |
||
1237 | * If a custom callable is used, its signature should conform to the default |
||
1238 | * Closure defined in {@link ReferencePrimer::__construct()}. |
||
1239 | * |
||
1240 | * @param boolean|callable $primer |
||
1241 | * @return $this |
||
1242 | 2 | * @throws \InvalidArgumentException If $primer is not boolean or callable |
|
1243 | */ |
||
1244 | 2 | public function prime($primer = true) |
|
1263 | |||
1264 | /** |
||
1265 | * Remove all elements matching the given value or expression from the |
||
1266 | * current array field. |
||
1267 | * |
||
1268 | * @see Expr::pull() |
||
1269 | * @see http://docs.mongodb.org/manual/reference/operator/pull/ |
||
1270 | * @param mixed|Expr $valueOrExpression |
||
1271 | * @return $this |
||
1272 | */ |
||
1273 | public function pull($valueOrExpression) |
||
1278 | |||
1279 | 25 | /** |
|
1280 | * Remove all elements matching any of the given values from the current |
||
1281 | 25 | * array field. |
|
1282 | 1 | * |
|
1283 | * @see Expr::pullAll() |
||
1284 | * @see http://docs.mongodb.org/manual/reference/operator/pullAll/ |
||
1285 | 24 | * @param array $values |
|
1286 | * @return $this |
||
1287 | */ |
||
1288 | public function pullAll(array $values) |
||
1293 | |||
1294 | /** |
||
1295 | 23 | * Append one or more values to the current array field. |
|
1296 | 23 | * |
|
1297 | * If the field does not exist, it will be set to an array containing the |
||
1298 | * value(s) in the argument. If the field is not an array, the query |
||
1299 | * will yield an error. |
||
1300 | * |
||
1301 | * Multiple values may be specified by providing an Expr object and using |
||
1302 | * {@link Expr::each()}. {@link Expr::slice()} and {@link Expr::sort()} may |
||
1303 | * also be used to limit and order array elements, respectively. |
||
1304 | * |
||
1305 | * @see Expr::push() |
||
1306 | * @see http://docs.mongodb.org/manual/reference/operator/push/ |
||
1307 | * @see http://docs.mongodb.org/manual/reference/operator/each/ |
||
1308 | 1 | * @see http://docs.mongodb.org/manual/reference/operator/slice/ |
|
1309 | * @see http://docs.mongodb.org/manual/reference/operator/sort/ |
||
1310 | 1 | * @param mixed|Expr $valueOrExpression |
|
1311 | 1 | * @return $this |
|
1312 | */ |
||
1313 | public function push($valueOrExpression) |
||
1318 | |||
1319 | /** |
||
1320 | * Specify $gte and $lt criteria for the current field. |
||
1321 | * |
||
1322 | * This method is shorthand for specifying $gte criteria on the lower bound |
||
1323 | 1 | * and $lt criteria on the upper bound. The upper bound is not inclusive. |
|
1324 | * |
||
1325 | 1 | * @see Expr::range() |
|
1326 | 1 | * @param mixed $start |
|
1327 | * @param mixed $end |
||
1328 | * @return $this |
||
1329 | */ |
||
1330 | public function range($start, $end) |
||
1335 | |||
1336 | /** |
||
1337 | * @param bool $bool |
||
1338 | * @return $this |
||
1339 | */ |
||
1340 | public function readOnly($bool = true) |
||
1345 | |||
1346 | /** |
||
1347 | * Set the "reduce" option for a mapReduce or group command. |
||
1348 | 6 | * |
|
1349 | * @param string|\MongoCode $reduce |
||
1350 | 6 | * @return $this |
|
1351 | 6 | * @throws \BadMethodCallException if the query is not a mapReduce or group command |
|
1352 | */ |
||
1353 | View Code Duplication | public function reduce($reduce) |
|
1370 | |||
1371 | 1 | /** |
|
1372 | 1 | * @param object $document |
|
1373 | * @return $this |
||
1374 | */ |
||
1375 | public function references($document) |
||
1380 | |||
1381 | /** |
||
1382 | * @param bool $bool |
||
1383 | * @return $this |
||
1384 | */ |
||
1385 | public function refresh($bool = true) |
||
1390 | |||
1391 | /** |
||
1392 | * @param string $documentName |
||
1393 | * @return $this |
||
1394 | */ |
||
1395 | public function remove($documentName = null) |
||
1402 | |||
1403 | /** |
||
1404 | * Rename the current field. |
||
1405 | * |
||
1406 | * @see Expr::rename() |
||
1407 | * @see http://docs.mongodb.org/manual/reference/operator/rename/ |
||
1408 | * @param string $name |
||
1409 | 2 | * @return $this |
|
1410 | */ |
||
1411 | 2 | public function rename($name) |
|
1416 | |||
1417 | /** |
||
1418 | * @param bool $bool |
||
1419 | * @return $this |
||
1420 | */ |
||
1421 | 1 | public function returnNew($bool = true) |
|
1428 | |||
1429 | /** |
||
1430 | * Set one or more fields to be included in the query projection. |
||
1431 | 10 | * |
|
1432 | * @param array|string $fieldName,... |
||
1433 | 10 | * @return $this |
|
1434 | 8 | */ |
|
1435 | View Code Duplication | public function select($fieldName = null) |
|
1449 | |||
1450 | /** |
||
1451 | 1 | * Select only matching embedded documents in an array field for the query |
|
1452 | * projection. |
||
1453 | 1 | * |
|
1454 | 1 | * @see http://docs.mongodb.org/manual/reference/projection/elemMatch/ |
|
1455 | * @param string $fieldName |
||
1456 | 1 | * @param array|Expr $expression |
|
1457 | * @return $this |
||
1458 | */ |
||
1459 | public function selectElemMatch($fieldName, $expression) |
||
1467 | |||
1468 | /** |
||
1469 | * Select a metadata field for the query projection. |
||
1470 | * |
||
1471 | * @see http://docs.mongodb.org/master/reference/operator/projection/meta/ |
||
1472 | * @param string $fieldName |
||
1473 | * @param string $metaDataKeyword |
||
1474 | * @return $this |
||
1475 | */ |
||
1476 | public function selectMeta($fieldName, $metaDataKeyword) |
||
1481 | |||
1482 | 4 | /** |
|
1483 | * Select a slice of an array field for the query projection. |
||
1484 | * |
||
1485 | * The $countOrSkip parameter has two very different meanings, depending on |
||
1486 | * whether or not $limit is provided. See the MongoDB documentation for more |
||
1487 | * information. |
||
1488 | * |
||
1489 | * @see http://docs.mongodb.org/manual/reference/projection/slice/ |
||
1490 | * @param string $fieldName |
||
1491 | 19 | * @param integer $countOrSkip Count parameter, or skip if limit is specified |
|
1492 | * @param integer $limit Limit parameter used in conjunction with skip |
||
1493 | 19 | * @return $this |
|
1494 | 18 | */ |
|
1495 | public function selectSlice($fieldName, $countOrSkip, $limit = null) |
||
1504 | |||
1505 | /** |
||
1506 | * Set the current field to a value. |
||
1507 | * |
||
1508 | * This is only relevant for insert, update, or findAndUpdate queries. For |
||
1509 | * update and findAndUpdate queries, the $atomic parameter will determine |
||
1510 | * whether or not a $set operator is used. |
||
1511 | * |
||
1512 | * @see Expr::set() |
||
1513 | * @see http://docs.mongodb.org/manual/reference/operator/set/ |
||
1514 | * @param mixed $value |
||
1515 | 2 | * @param boolean $atomic |
|
1516 | * @return $this |
||
1517 | 2 | */ |
|
1518 | 1 | public function set($value, $atomic = true) |
|
1523 | |||
1524 | /** |
||
1525 | * Set the expression's "new object". |
||
1526 | * |
||
1527 | * @see Expr::setNewObj() |
||
1528 | * @param array $newObj |
||
1529 | * @return $this |
||
1530 | */ |
||
1531 | public function setNewObj(array $newObj) |
||
1536 | |||
1537 | /** |
||
1538 | * Set the current field to the value if the document is inserted in an |
||
1539 | * upsert operation. |
||
1540 | * |
||
1541 | * If an update operation with upsert: true results in an insert of a |
||
1542 | * document, then $setOnInsert assigns the specified values to the fields in |
||
1543 | * the document. If the update operation does not result in an insert, |
||
1544 | * $setOnInsert does nothing. |
||
1545 | * |
||
1546 | * @see Expr::setOnInsert() |
||
1547 | * @see https://docs.mongodb.org/manual/reference/operator/update/setOnInsert/ |
||
1548 | * @param mixed $value |
||
1549 | * @return $this |
||
1550 | */ |
||
1551 | 3 | public function setOnInsert($value) |
|
1556 | |||
1557 | 3 | /** |
|
1558 | 3 | * Set the read preference for the query. |
|
1559 | * |
||
1560 | * This is only relevant for read-only queries and commands. |
||
1561 | * |
||
1562 | * @see http://docs.mongodb.org/manual/core/read-preference/ |
||
1563 | * @param ReadPreference $readPreference |
||
1564 | * @return $this |
||
1565 | */ |
||
1566 | public function setReadPreference(ReadPreference $readPreference) |
||
1571 | |||
1572 | /** |
||
1573 | * Set the expression's query criteria. |
||
1574 | 16 | * |
|
1575 | * @see Expr::setQuery() |
||
1576 | 16 | * @param array $query |
|
1577 | 16 | * @return $this |
|
1578 | */ |
||
1579 | public function setQueryArray(array $query) |
||
1584 | |||
1585 | /** |
||
1586 | * Specify $size criteria for the current field. |
||
1587 | * |
||
1588 | * @see Expr::size() |
||
1589 | * @see http://docs.mongodb.org/manual/reference/operator/size/ |
||
1590 | * @param integer $size |
||
1591 | * @return $this |
||
1592 | */ |
||
1593 | public function size($size) |
||
1598 | |||
1599 | /** |
||
1600 | * Set the skip for the query cursor. |
||
1601 | * |
||
1602 | * This is only relevant for find queries, or mapReduce queries that store |
||
1603 | * results in an output collecton and return a cursor. |
||
1604 | * |
||
1605 | * @see Query::prepareCursor() |
||
1606 | * @param integer $skip |
||
1607 | 2 | * @return $this |
|
1608 | */ |
||
1609 | 2 | public function skip($skip) |
|
1614 | |||
1615 | /** |
||
1616 | * Set the snapshot cursor flag. |
||
1617 | * |
||
1618 | * @param boolean $bool |
||
1619 | * @return $this |
||
1620 | */ |
||
1621 | public function snapshot($bool = true) |
||
1626 | |||
1627 | /** |
||
1628 | * Set one or more field/order pairs on which to sort the query. |
||
1629 | * |
||
1630 | * If sorting by multiple fields, the first argument should be an array of |
||
1631 | * field name (key) and order (value) pairs. |
||
1632 | * |
||
1633 | * @param array|string $fieldName Field name or array of field/order pairs |
||
1634 | * @param int|string $order Field order (if one field is specified) |
||
1635 | 18 | * @return $this |
|
1636 | */ |
||
1637 | 18 | public function sort($fieldName, $order = 1) |
|
1654 | |||
1655 | /** |
||
1656 | * Specify a projected metadata field on which to sort the query. |
||
1657 | * |
||
1658 | * Sort order is not configurable for metadata fields. Sorting by a metadata |
||
1659 | * field requires the same field and $meta expression to exist in the |
||
1660 | * projection document. This method will call {@link Builder::selectMeta()} |
||
1661 | * if the field is not already set in the projection. |
||
1662 | * |
||
1663 | * @see http://docs.mongodb.org/master/reference/operator/projection/meta/#sort |
||
1664 | * @param string $fieldName Field name of the projected metadata |
||
1665 | * @param string $metaDataKeyword |
||
1666 | * @return $this |
||
1667 | */ |
||
1668 | public function sortMeta($fieldName, $metaDataKeyword) |
||
1682 | |||
1683 | /** |
||
1684 | * Specify $text criteria for the current field. |
||
1685 | * |
||
1686 | * The $language option may be set with {@link Builder::language()}. |
||
1687 | * |
||
1688 | * @see Expr::text() |
||
1689 | * @see http://docs.mongodb.org/master/reference/operator/query/text/ |
||
1690 | * @param string $search |
||
1691 | * @return $this |
||
1692 | */ |
||
1693 | 31 | public function text($search) |
|
1698 | |||
1699 | 31 | /** |
|
1700 | * Specify $type criteria for the current field. |
||
1701 | 31 | * |
|
1702 | 14 | * @see Expr::type() |
|
1703 | 9 | * @see http://docs.mongodb.org/manual/reference/operator/type/ |
|
1704 | * @param integer $type |
||
1705 | 14 | * @return $this |
|
1706 | */ |
||
1707 | public function type($type) |
||
1712 | |||
1713 | /** |
||
1714 | * Unset the current field. |
||
1715 | * |
||
1716 | * The field will be removed from the document (not set to null). |
||
1717 | * |
||
1718 | * @see Expr::unsetField() |
||
1719 | * @see http://docs.mongodb.org/manual/reference/operator/unset/ |
||
1720 | * @return $this |
||
1721 | */ |
||
1722 | public function unsetField() |
||
1727 | |||
1728 | /** |
||
1729 | * @param string $documentName |
||
1730 | 2 | * @return $this |
|
1731 | 1 | */ |
|
1732 | View Code Duplication | public function updateOne($documentName = null) |
|
1740 | |||
1741 | /** |
||
1742 | * @param string $documentName |
||
1743 | * @return $this |
||
1744 | */ |
||
1745 | View Code Duplication | public function updateMany($documentName = null) |
|
1753 | |||
1754 | /** |
||
1755 | * Set the "upsert" option for an update or findAndUpdate query. |
||
1756 | * |
||
1757 | * @param boolean $bool |
||
1758 | * @return $this |
||
1759 | */ |
||
1760 | public function upsert($bool = true) |
||
1765 | 2 | ||
1766 | 2 | /** |
|
1767 | * Specify a JavaScript expression to use for matching documents. |
||
1768 | * |
||
1769 | * @see Expr::where() |
||
1770 | * @see http://docs.mongodb.org/manual/reference/operator/where/ |
||
1771 | * @param string|\MongoCode $javascript |
||
1772 | * @return $this |
||
1773 | */ |
||
1774 | public function where($javascript) |
||
1779 | |||
1780 | 4 | /** |
|
1781 | 4 | * Get Discriminator Values |
|
1782 | * |
||
1783 | * @param \Traversable $classNames |
||
1784 | * @return array an array of discriminatorValues (mixed type) |
||
1785 | * @throws \InvalidArgumentException if the number of found collections > 1 |
||
1786 | */ |
||
1787 | private function getDiscriminatorValues($classNames) |
||
1802 | |||
1803 | 3 | /** |
|
1804 | 3 | * @param string[]|string $documentName an array of document names or just one. |
|
1805 | 3 | */ |
|
1806 | private function setDocumentName($documentName) |
||
1832 | } |
||
1833 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.