Completed
Pull Request — master (#1753)
by Gabriel
10:33
created
lib/Doctrine/ODM/MongoDB/Aggregation/Stage/Operator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -407,7 +407,7 @@  discard block
 block discarded – undo
407 407
      *
408 408
      * @see http://docs.mongodb.org/manual/meta/aggregation-quick-reference/#aggregation-expressions
409 409
      * @see Expr::expression
410
-     * @param mixed|Expr $value
410
+     * @param boolean $value
411 411
      * @return $this
412 412
      */
413 413
     public function expression($value)
@@ -1016,7 +1016,7 @@  discard block
 block discarded – undo
1016 1016
      * @see Expr::range
1017 1017
      * @param mixed|Expr $start An integer that specifies the start of the sequence. Can be any valid expression that resolves to an integer.
1018 1018
      * @param mixed|Expr $end   An integer that specifies the exclusive upper limit of the sequence. Can be any valid expression that resolves to an integer.
1019
-     * @param mixed|Expr $step  Optional. An integer that specifies the increment value. Can be any valid expression that resolves to a non-zero integer. Defaults to 1.
1019
+     * @param integer $step  Optional. An integer that specifies the increment value. Can be any valid expression that resolves to a non-zero integer. Defaults to 1.
1020 1020
      * @return $this
1021 1021
      */
1022 1022
     public function range($start, $end, $step = 1)
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Query/Expr.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -818,7 +818,7 @@
 block discarded – undo
818 818
      * @see Builder::mod()
819 819
      * @see http://docs.mongodb.org/manual/reference/operator/mod/
820 820
      * @param float|int $divisor
821
-     * @param float|int $remainder
821
+     * @param integer $remainder
822 822
      * @return $this
823 823
      */
824 824
     public function mod($divisor, $remainder = 0)
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/UnitOfWork.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2569,7 +2569,7 @@
 block discarded – undo
2569 2569
      * @param array  $data      The data for the document.
2570 2570
      * @param array  $hints     Any hints to account for during reconstitution/lookup of the document.
2571 2571
      * @param object $document  The document to be hydrated into in case of creation
2572
-     * @return object The document instance.
2572
+     * @return callable|null The document instance.
2573 2573
      * @internal Highly performance-sensitive method.
2574 2574
      */
2575 2575
     public function getOrCreateDocument($className, $data, &$hints = [], $document = null)
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Aggregation/Stage/Lookup.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -170,6 +170,10 @@
 block discarded – undo
170 170
         return $this;
171 171
     }
172 172
 
173
+    /**
174
+     * @param string $fieldName
175
+     * @param ClassMetadata $class
176
+     */
173 177
     protected function prepareFieldName($fieldName, ?ClassMetadata $class = null)
174 178
     {
175 179
         if (! $class) {
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Query/Builder.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
     /**
107 107
      * Construct a Builder
108 108
      *
109
-     * @param string[]|string|null $documentName (optional) an array of document names, the document name, or none
109
+     * @param string|null $documentName (optional) an array of document names, the document name, or none
110 110
      */
111 111
     public function __construct(DocumentManager $dm, $documentName = null)
112 112
     {
@@ -1091,7 +1091,7 @@  discard block
 block discarded – undo
1091 1091
      * @see Expr::mod()
1092 1092
      * @see http://docs.mongodb.org/manual/reference/operator/mod/
1093 1093
      * @param float|int $divisor
1094
-     * @param float|int $remainder
1094
+     * @param integer $remainder
1095 1095
      * @return $this
1096 1096
      */
1097 1097
     public function mod($divisor, $remainder = 0)
@@ -1255,7 +1255,7 @@  discard block
 block discarded – undo
1255 1255
      * If a custom callable is used, its signature should conform to the default
1256 1256
      * Closure defined in {@link ReferencePrimer::__construct()}.
1257 1257
      *
1258
-     * @param bool|callable $primer
1258
+     * @param boolean $primer
1259 1259
      * @return $this
1260 1260
      * @throws \InvalidArgumentException If $primer is not boolean or callable.
1261 1261
      */
@@ -1648,7 +1648,7 @@  discard block
 block discarded – undo
1648 1648
      * field name (key) and order (value) pairs.
1649 1649
      *
1650 1650
      * @param array|string $fieldName Field name or array of field/order pairs
1651
-     * @param int|string   $order     Field order (if one field is specified)
1651
+     * @param integer   $order     Field order (if one field is specified)
1652 1652
      * @return $this
1653 1653
      */
1654 1654
     public function sort($fieldName, $order = 1)
Please login to merge, or discard this patch.