Completed
Pull Request — master (#1733)
by Gabriel
11:05 queued 01:26
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/UnitOfWork.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2631,7 +2631,7 @@
 block discarded – undo
2631 2631
      * @param array $data The data for the document.
2632 2632
      * @param array $hints Any hints to account for during reconstitution/lookup of the document.
2633 2633
      * @param object $document The document to be hydrated into in case of creation
2634
-     * @return object The document instance.
2634
+     * @return callable|null The document instance.
2635 2635
      * @internal Highly performance-sensitive method.
2636 2636
      */
2637 2637
     public function getOrCreateDocument($className, $data, &$hints = array(), $document = null)
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Aggregation/Builder.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
      *
384 384
      * @see http://docs.mongodb.org/manual/reference/operator/aggregation/out/
385 385
      *
386
-     * @param string $collection
386
+     * @param string $from
387 387
      * @return Stage\Out
388 388
      */
389 389
     public function out($from)
@@ -549,7 +549,7 @@  discard block
 block discarded – undo
549 549
     }
550 550
 
551 551
     /**
552
-     * @param Cursor $cursor
552
+     * @param \Traversable $cursor
553 553
      *
554 554
      * @return Iterator
555 555
      */
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/SchemaManager.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -443,7 +443,7 @@  discard block
 block discarded – undo
443 443
      * the unique index. Additionally, the background option is only
444 444
      * relevant to index creation and is not considered.
445 445
      *
446
-     * @param array|IndexInfo $mongoIndex Mongo index data.
446
+     * @param IndexInfo $mongoIndex Mongo index data.
447 447
      * @param array $documentIndex Document index data.
448 448
      * @return bool True if the indexes are equivalent, otherwise false.
449 449
      */
@@ -589,9 +589,9 @@  discard block
 block discarded – undo
589 589
     }
590 590
 
591 591
     /**
592
-     * @param $documentName
592
+     * @param string $documentName
593 593
      *
594
-     * @return array
594
+     * @return string
595 595
      */
596 596
     private function runShardCollectionCommand($documentName)
597 597
     {
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
@@ -325,6 +325,9 @@  discard block
 block discarded – undo
325 325
         return Type::convertPHPToDatabaseValue(Expr::convertExpression($expression));
326 326
     }
327 327
 
328
+    /**
329
+     * @param string $fieldName
330
+     */
328 331
     private function convertTargetFieldName($fieldName)
329 332
     {
330 333
         if (is_array($fieldName)) {
@@ -347,6 +350,9 @@  discard block
 block discarded – undo
347 350
         return $this->dm->getUnitOfWork()->getDocumentPersister($class->name);
348 351
     }
349 352
 
353
+    /**
354
+     * @param string $fieldName
355
+     */
350 356
     private function getReferencedFieldName($fieldName, array $mapping)
351 357
     {
352 358
         if ( ! $mapping['isOwningSide']) {
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
@@ -1117,7 +1117,7 @@
 block discarded – undo
1117 1117
      * @since 1.5
1118 1118
      * @param mixed|self $start An integer that specifies the start of the sequence. Can be any valid expression that resolves to an integer.
1119 1119
      * @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.
1120
-     * @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.
1120
+     * @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.
1121 1121
      * @return $this
1122 1122
      */
1123 1123
     public function range($start, $end, $step = 1)
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Aggregation/Stage/Match.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
      *
221 221
      * @see Expr::geoWithin()
222 222
      * @see http://docs.mongodb.org/manual/reference/operator/geoWithin/
223
-     * @param array|Geometry $geometry
223
+     * @param Geometry $geometry
224 224
      * @return $this
225 225
      */
226 226
     public function geoWithin(Geometry $geometry)
@@ -482,7 +482,7 @@  discard block
 block discarded – undo
482 482
      * @see Expr::mod()
483 483
      * @see http://docs.mongodb.org/manual/reference/operator/mod/
484 484
      * @param float|integer $divisor
485
-     * @param float|integer $remainder
485
+     * @param integer $remainder
486 486
      * @return $this
487 487
      */
488 488
     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
@@ -411,7 +411,7 @@  discard block
 block discarded – undo
411 411
      *
412 412
      * @see http://docs.mongodb.org/manual/meta/aggregation-quick-reference/#aggregation-expressions
413 413
      * @see Expr::expression
414
-     * @param mixed|Expr $value
414
+     * @param boolean $value
415 415
      * @return $this
416 416
      */
417 417
     public function expression($value)
@@ -1035,7 +1035,7 @@  discard block
 block discarded – undo
1035 1035
      * @since 1.5
1036 1036
      * @param mixed|Expr $start An integer that specifies the start of the sequence. Can be any valid expression that resolves to an integer.
1037 1037
      * @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.
1038
-     * @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.
1038
+     * @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.
1039 1039
      * @return $this
1040 1040
      */
1041 1041
     public function range($start, $end, $step = 1)
Please login to merge, or discard this patch.