Completed
Pull Request — master (#1825)
by Catalin
15:37
created
ODM/MongoDB/PersistentCollection/DefaultPersistentCollectionGenerator.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -84,6 +84,11 @@
 block discarded – undo
84 84
         return $className;
85 85
     }
86 86
 
87
+    /**
88
+     * @param string $for
89
+     * @param string $targetFqcn
90
+     * @param string|false $fileName
91
+     */
87 92
     private function generateCollectionClass($for, $targetFqcn, $fileName)
88 93
     {
89 94
         $exploded = explode('\\', $targetFqcn);
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Aggregation/Stage/AbstractBucket.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -90,6 +90,9 @@
 block discarded – undo
90 90
      */
91 91
     abstract protected function getStageName();
92 92
 
93
+    /**
94
+     * @param Expr $expression
95
+     */
93 96
     private function convertExpression($expression)
94 97
     {
95 98
         if (is_array($expression)) {
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Query/Query.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -362,6 +362,7 @@
 block discarded – undo
362 362
      * query array, provided they exist and are not null.
363 363
      *
364 364
      * @param string ...$keys One or more option keys to be read
365
+     * @param string[] $keys
365 366
      * @return array
366 367
      */
367 368
     private function getQueryOptions(string ...$keys)
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Mapping/Driver/XmlDriver.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -17,6 +17,7 @@  discard block
 block discarded – undo
17 17
 
18 18
     /**
19 19
      * {@inheritDoc}
20
+     * @param \Doctrine\Common\Persistence\Mapping\Driver\SymfonyFileLocator $locator
20 21
      */
21 22
     public function __construct($locator, $fileExtension = self::DEFAULT_FILE_EXTENSION)
22 23
     {
@@ -219,6 +220,9 @@  discard block
 block discarded – undo
219 220
         $class->addIndex($keys, $options);
220 221
     }
221 222
 
223
+    /**
224
+     * @param string $type
225
+     */
222 226
     private function addEmbedMapping(ClassMetadata $class, $embed, $type)
223 227
     {
224 228
         $attributes = $embed->attributes();
@@ -256,6 +260,9 @@  discard block
 block discarded – undo
256 260
         $this->addFieldMapping($class, $mapping);
257 261
     }
258 262
 
263
+    /**
264
+     * @param string $type
265
+     */
259 266
     private function addReferenceMapping(ClassMetadata $class, $reference, $type)
260 267
     {
261 268
         $cascade = array_keys((array) $reference->cascade);
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Aggregation/Expr.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1105,7 +1105,7 @@
 block discarded – undo
1105 1105
      * @see https://docs.mongodb.com/manual/reference/operator/aggregation/range/
1106 1106
      * @param mixed|self $start An integer that specifies the start of the sequence. Can be any valid expression that resolves to an integer.
1107 1107
      * @param mixed|self $end   An integer that specifies the exclusive upper limit of the sequence. Can be any valid expression that resolves to an integer.
1108
-     * @param mixed|self $step  Optional. An integer that specifies the increment value. Can be any valid expression that resolves to a non-zero integer. Defaults to 1.
1108
+     * @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.
1109 1109
      * @return $this
1110 1110
      */
1111 1111
     public function range($start, $end, $step = 1)
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Aggregation/Stage/GraphLookup.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -328,6 +328,9 @@  discard block
 block discarded – undo
328 328
         return Type::convertPHPToDatabaseValue(Expr::convertExpression($expression));
329 329
     }
330 330
 
331
+    /**
332
+     * @param string $fieldName
333
+     */
331 334
     private function convertTargetFieldName($fieldName)
332 335
     {
333 336
         if (is_array($fieldName)) {
@@ -349,6 +352,9 @@  discard block
 block discarded – undo
349 352
         return $this->dm->getUnitOfWork()->getDocumentPersister($class->name);
350 353
     }
351 354
 
355
+    /**
356
+     * @param string $fieldName
357
+     */
352 358
     private function getReferencedFieldName($fieldName, array $mapping)
353 359
     {
354 360
         if (! $mapping['isOwningSide']) {
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Aggregation/Stage/Match.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -484,7 +484,7 @@
 block discarded – undo
484 484
      * @see Expr::mod()
485 485
      * @see http://docs.mongodb.org/manual/reference/operator/mod/
486 486
      * @param float|int $divisor
487
-     * @param float|int $remainder
487
+     * @param integer $remainder
488 488
      * @return $this
489 489
      */
490 490
     public function mod($divisor, $remainder = 0)
Please login to merge, or discard this patch.
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.