Completed
Pull Request — master (#1722)
by Maciej
42:42 queued 18:31
created
lib/Doctrine/ODM/MongoDB/Mapping/ClassMetadata.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
      *      - reflClass (ReflectionClass)
98 98
      *      - reflFields (ReflectionProperty array)
99 99
      *
100
-     * @return array The names of all the fields that should be serialized.
100
+     * @return string[] The names of all the fields that should be serialized.
101 101
      */
102 102
     public function __sleep()
103 103
     {
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Mapping/Driver/YamlDriver.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -38,6 +38,7 @@
 block discarded – undo
38 38
 
39 39
     /**
40 40
      * {@inheritDoc}
41
+     * @param \Doctrine\Common\Persistence\Mapping\Driver\SymfonyFileLocator $locator
41 42
      */
42 43
     public function __construct($locator, $fileExtension = self::DEFAULT_FILE_EXTENSION)
43 44
     {
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Query/CriteriaMerger.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,6 @@
 block discarded – undo
31 31
     /**
32 32
      * Combines any number of criteria arrays as clauses of an "$and" query.
33 33
      *
34
-     * @param array $criteria,... Any number of query criteria arrays
35 34
      * @return array
36 35
      */
37 36
     public function merge(/* array($field => $value), ... */)
Please login to merge, or discard this patch.
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/Mapping/Driver/XmlDriver.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -36,6 +36,7 @@  discard block
 block discarded – undo
36 36
 
37 37
     /**
38 38
      * {@inheritDoc}
39
+     * @param \Doctrine\Common\Persistence\Mapping\Driver\SymfonyFileLocator $locator
39 40
      */
40 41
     public function __construct($locator, $fileExtension = self::DEFAULT_FILE_EXTENSION)
41 42
     {
@@ -241,6 +242,9 @@  discard block
 block discarded – undo
241 242
         $class->addIndex($keys, $options);
242 243
     }
243 244
 
245
+    /**
246
+     * @param string $type
247
+     */
244 248
     private function addEmbedMapping(ClassMetadataInfo $class, $embed, $type)
245 249
     {
246 250
         $attributes = $embed->attributes();
@@ -278,6 +282,9 @@  discard block
 block discarded – undo
278 282
         $this->addFieldMapping($class, $mapping);
279 283
     }
280 284
 
285
+    /**
286
+     * @param string $type
287
+     */
281 288
     private function addReferenceMapping(ClassMetadataInfo $class, $reference, $type)
282 289
     {
283 290
         $cascade = array_keys((array) $reference->cascade);
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/Mapping/ClassMetadataInfo.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1085,7 +1085,7 @@  discard block
 block discarded – undo
1085 1085
     /**
1086 1086
      * Gets the ReflectionProperties of the mapped class.
1087 1087
      *
1088
-     * @return array An array of ReflectionProperty instances.
1088
+     * @return \ReflectionProperty[] An array of ReflectionProperty instances.
1089 1089
      */
1090 1090
     public function getReflectionProperties()
1091 1091
     {
@@ -1900,7 +1900,7 @@  discard block
 block discarded – undo
1900 1900
      *
1901 1901
      * @param string $dbFieldName
1902 1902
      *
1903
-     * @return array
1903
+     * @return string
1904 1904
      * @throws MappingException
1905 1905
      */
1906 1906
     public function getFieldMappingByDbFieldName($dbFieldName)
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/Expr.php 1 patch
Doc Comments   +1 added lines, -10 removed lines patch added patch discarded remove patch
@@ -107,7 +107,6 @@  discard block
 block discarded – undo
107 107
      * @see http://docs.mongodb.org/manual/reference/operator/aggregation/add/
108 108
      * @param mixed|self $expression1
109 109
      * @param mixed|self $expression2
110
-     * @param mixed|self $expression3,... Additional expressions
111 110
      * @return $this
112 111
      */
113 112
     public function add($expression1, $expression2 /* , $expression3, ... */)
@@ -296,7 +295,6 @@  discard block
 block discarded – undo
296 295
      * @see http://docs.mongodb.org/manual/reference/operator/aggregation/concat/
297 296
      * @param mixed|self $expression1
298 297
      * @param mixed|self $expression2
299
-     * @param mixed|self $expression3,... Additional expressions
300 298
      * @return $this
301 299
      */
302 300
     public function concat($expression1, $expression2 /* , $expression3, ... */)
@@ -313,7 +311,6 @@  discard block
 block discarded – undo
313 311
      * @see https://docs.mongodb.org/manual/reference/operator/aggregation/concatArrays/
314 312
      * @param mixed|self $array1
315 313
      * @param mixed|self $array2
316
-     * @param mixed|self $array3, ... Additional expressions
317 314
      * @return $this
318 315
      *
319 316
      * @since 1.3
@@ -1074,7 +1071,6 @@  discard block
 block discarded – undo
1074 1071
      * @see http://docs.mongodb.org/manual/reference/operator/aggregation/multiply/
1075 1072
      * @param mixed|self $expression1
1076 1073
      * @param mixed|self $expression2
1077
-     * @param mixed|self $expression3,... Additional expressions
1078 1074
      * @return $this
1079 1075
      */
1080 1076
     public function multiply($expression1, $expression2 /* , $expression3, ... */)
@@ -1151,7 +1147,7 @@  discard block
 block discarded – undo
1151 1147
      * @since 1.5
1152 1148
      * @param mixed|self $start An integer that specifies the start of the sequence. Can be any valid expression that resolves to an integer.
1153 1149
      * @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.
1154
-     * @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.
1150
+     * @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.
1155 1151
      * @return $this
1156 1152
      */
1157 1153
     public function range($start, $end, $step = 1)
@@ -1229,7 +1225,6 @@  discard block
 block discarded – undo
1229 1225
      * @see http://docs.mongodb.org/manual/reference/operator/aggregation/setEquals/
1230 1226
      * @param mixed|self $expression1
1231 1227
      * @param mixed|self $expression2
1232
-     * @param mixed|self $expression3,...   Additional sets
1233 1228
      * @return $this
1234 1229
      */
1235 1230
     public function setEquals($expression1, $expression2 /* , $expression3, ... */)
@@ -1246,7 +1241,6 @@  discard block
 block discarded – undo
1246 1241
      * @see http://docs.mongodb.org/manual/reference/operator/aggregation/setIntersection/
1247 1242
      * @param mixed|self $expression1
1248 1243
      * @param mixed|self $expression2
1249
-     * @param mixed|self $expression3,...   Additional sets
1250 1244
      * @return $this
1251 1245
      */
1252 1246
     public function setIntersection($expression1, $expression2 /* , $expression3, ... */)
@@ -1279,7 +1273,6 @@  discard block
 block discarded – undo
1279 1273
      * @see http://docs.mongodb.org/manual/reference/operator/aggregation/setUnion/
1280 1274
      * @param mixed|self $expression1
1281 1275
      * @param mixed|self $expression2
1282
-     * @param mixed|self $expression3,...   Additional sets
1283 1276
      * @return $this
1284 1277
      */
1285 1278
     public function setUnion($expression1, $expression2 /* , $expression3, ... */)
@@ -1363,7 +1356,6 @@  discard block
 block discarded – undo
1363 1356
      *
1364 1357
      * @see https://docs.mongodb.org/manual/reference/operator/aggregation/stdDevPop/
1365 1358
      * @param mixed|self $expression1
1366
-     * @param mixed|self $expression2,... Additional samples
1367 1359
      * @return $this
1368 1360
      *
1369 1361
      * @since 1.3
@@ -1382,7 +1374,6 @@  discard block
 block discarded – undo
1382 1374
      *
1383 1375
      * @see https://docs.mongodb.org/manual/reference/operator/aggregation/stdDevSamp/
1384 1376
      * @param mixed|self $expression1
1385
-     * @param mixed|self $expression2,... Additional samples
1386 1377
      * @return $this
1387 1378
      *
1388 1379
      * @since 1.3
Please login to merge, or discard this patch.