Completed
Pull Request — master (#1733)
by Gabriel
11:12 queued 01:20
created
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.
lib/Doctrine/ODM/MongoDB/Query/Builder.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      * Construct a Builder
95 95
      *
96 96
      * @param DocumentManager $dm
97
-     * @param string[]|string|null $documentName (optional) an array of document names, the document name, or none
97
+     * @param string|null $documentName (optional) an array of document names, the document name, or none
98 98
      */
99 99
     public function __construct(DocumentManager $dm, $documentName = null)
100 100
     {
@@ -1079,7 +1079,7 @@  discard block
 block discarded – undo
1079 1079
      * @see Expr::mod()
1080 1080
      * @see http://docs.mongodb.org/manual/reference/operator/mod/
1081 1081
      * @param float|integer $divisor
1082
-     * @param float|integer $remainder
1082
+     * @param integer $remainder
1083 1083
      * @return $this
1084 1084
      */
1085 1085
     public function mod($divisor, $remainder = 0)
@@ -1243,7 +1243,7 @@  discard block
 block discarded – undo
1243 1243
      * If a custom callable is used, its signature should conform to the default
1244 1244
      * Closure defined in {@link ReferencePrimer::__construct()}.
1245 1245
      *
1246
-     * @param boolean|callable $primer
1246
+     * @param boolean $primer
1247 1247
      * @return $this
1248 1248
      * @throws \InvalidArgumentException If $primer is not boolean or callable
1249 1249
      */
@@ -1637,7 +1637,7 @@  discard block
 block discarded – undo
1637 1637
      * field name (key) and order (value) pairs.
1638 1638
      *
1639 1639
      * @param array|string $fieldName Field name or array of field/order pairs
1640
-     * @param int|string $order       Field order (if one field is specified)
1640
+     * @param integer $order       Field order (if one field is specified)
1641 1641
      * @return $this
1642 1642
      */
1643 1643
     public function sort($fieldName, $order = 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
@@ -804,7 +804,7 @@
 block discarded – undo
804 804
      * @see Builder::mod()
805 805
      * @see http://docs.mongodb.org/manual/reference/operator/mod/
806 806
      * @param float|integer $divisor
807
-     * @param float|integer $remainder
807
+     * @param integer $remainder
808 808
      * @return $this
809 809
      */
810 810
     public function mod($divisor, $remainder = 0)
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/ClassMetadata.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1005,7 +1005,7 @@  discard block
 block discarded – undo
1005 1005
     /**
1006 1006
      * Gets the ReflectionProperties of the mapped class.
1007 1007
      *
1008
-     * @return array An array of ReflectionProperty instances.
1008
+     * @return \ReflectionProperty[] An array of ReflectionProperty instances.
1009 1009
      */
1010 1010
     public function getReflectionProperties()
1011 1011
     {
@@ -1553,7 +1553,7 @@  discard block
 block discarded – undo
1553 1553
      *
1554 1554
      * @param string $dbFieldName
1555 1555
      *
1556
-     * @return array
1556
+     * @return string
1557 1557
      * @throws MappingException
1558 1558
      */
1559 1559
     public function getFieldMappingByDbFieldName($dbFieldName)
@@ -2064,7 +2064,7 @@  discard block
 block discarded – undo
2064 2064
      *      - reflClass (ReflectionClass)
2065 2065
      *      - reflFields (ReflectionProperty array)
2066 2066
      *
2067
-     * @return array The names of all the fields that should be serialized.
2067
+     * @return string[] The names of all the fields that should be serialized.
2068 2068
      */
2069 2069
     public function __sleep()
2070 2070
     {
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
@@ -18,6 +18,7 @@  discard block
 block discarded – undo
18 18
 
19 19
     /**
20 20
      * {@inheritDoc}
21
+     * @param \Doctrine\Common\Persistence\Mapping\Driver\SymfonyFileLocator $locator
21 22
      */
22 23
     public function __construct($locator, $fileExtension = self::DEFAULT_FILE_EXTENSION)
23 24
     {
@@ -220,6 +221,9 @@  discard block
 block discarded – undo
220 221
         $class->addIndex($keys, $options);
221 222
     }
222 223
 
224
+    /**
225
+     * @param string $type
226
+     */
223 227
     private function addEmbedMapping(MappingClassMetadata $class, $embed, $type)
224 228
     {
225 229
         $attributes = $embed->attributes();
@@ -257,6 +261,9 @@  discard block
 block discarded – undo
257 261
         $this->addFieldMapping($class, $mapping);
258 262
     }
259 263
 
264
+    /**
265
+     * @param string $type
266
+     */
260 267
     private function addReferenceMapping(MappingClassMetadata $class, $reference, $type)
261 268
     {
262 269
         $cascade = array_keys((array) $reference->cascade);
Please login to merge, or discard this patch.
ODM/MongoDB/Tools/Console/Command/GeneratePersistentCollectionsCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Doctrine\ODM\MongoDB\Tools\Console\Command;
4 4
 
5
-use Doctrine\ODM\MongoDB\Mapping\ClassMetadata;
6 5
 use Doctrine\ODM\MongoDB\Tools\Console\MetadataFilter;
7 6
 use Symfony\Component\Console\Input\InputArgument;
8 7
 use Symfony\Component\Console\Input\InputOption;
Please login to merge, or discard this patch.