Completed
Pull Request — master (#1974)
by
unknown
23:55
created
lib/Doctrine/ODM/MongoDB/Aggregation/Stage/GraphLookup.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -89,6 +89,9 @@  discard block
 block discarded – undo
89 89
         return parent::from($this->targetClass->getCollection());
90 90
     }
91 91
 
92
+    /**
93
+     * @param string|null $connectFromField
94
+     */
92 95
     public function connectFromField($connectFromField)
93 96
     {
94 97
         // No targetClass mapping - simply use field name as is
@@ -110,6 +113,9 @@  discard block
 block discarded – undo
110 113
         return parent::connectFromField($this->getReferencedFieldName($connectFromField, $referenceMapping));
111 114
     }
112 115
 
116
+    /**
117
+     * @param string $connectToField
118
+     */
113 119
     public function connectToField($connectToField)
114 120
     {
115 121
         return parent::connectToField($this->convertTargetFieldName($connectToField));
@@ -165,6 +171,9 @@  discard block
 block discarded – undo
165 171
         }
166 172
     }
167 173
 
174
+    /**
175
+     * @return string
176
+     */
168 177
     protected function convertTargetFieldName($fieldName)
169 178
     {
170 179
         if (is_array($fieldName)) {
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Aggregation/Stage/Lookup.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -149,6 +149,7 @@  discard block
 block discarded – undo
149 149
 
150 150
     /**
151 151
      * {@inheritdoc}
152
+     * @param string $localField
152 153
      */
153 154
     public function localField($localField)
154 155
     {
@@ -157,12 +158,16 @@  discard block
 block discarded – undo
157 158
 
158 159
     /**
159 160
      * {@inheritdoc}
161
+     * @param string $foreignField
160 162
      */
161 163
     public function foreignField($foreignField)
162 164
     {
163 165
         return parent::foreignField($this->prepareFieldName($foreignField, $this->targetClass));
164 166
     }
165 167
 
168
+    /**
169
+     * @return string
170
+     */
166 171
     protected function prepareFieldName($fieldName, ClassMetadata $class = null)
167 172
     {
168 173
         if ( ! $class) {
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/Configuration.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
      * Gets a boolean flag that indicates whether proxy classes should always be regenerated
217 217
      * during each script execution.
218 218
      *
219
-     * @return boolean|integer
219
+     * @return integer
220 220
      */
221 221
     public function getAutoGenerateProxyClasses()
222 222
     {
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
      * Gets a boolean flag that indicates whether hydrator classes should always be regenerated
296 296
      * during each script execution.
297 297
      *
298
-     * @return boolean|integer Possible values are defined constants
298
+     * @return integer Possible values are defined constants
299 299
      */
300 300
     public function getAutoGenerateHydratorClasses()
301 301
     {
@@ -556,6 +556,7 @@  discard block
 block discarded – undo
556 556
 
557 557
     /**
558 558
      * @throws MongoDBException If not is a ObjectRepository.
559
+     * @param string $className
559 560
      */
560 561
     public function setDefaultDocumentRepositoryClassName($className)
561 562
     {
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Mapping/Driver/XmlDriver.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -41,6 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
     /**
43 43
      * {@inheritDoc}
44
+     * @param \Doctrine\Common\Persistence\Mapping\Driver\SymfonyFileLocator $locator
44 45
      */
45 46
     public function __construct($locator, $fileExtension = self::DEFAULT_FILE_EXTENSION)
46 47
     {
@@ -312,6 +313,9 @@  discard block
 block discarded – undo
312 313
         $class->addIndex($keys, $options);
313 314
     }
314 315
 
316
+    /**
317
+     * @param string $type
318
+     */
315 319
     private function addEmbedMapping(MappingClassMetadata $class, $embed, $type)
316 320
     {
317 321
         $attributes = $embed->attributes();
@@ -358,6 +362,9 @@  discard block
 block discarded – undo
358 362
         $this->addFieldMapping($class, $mapping);
359 363
     }
360 364
 
365
+    /**
366
+     * @param string $type
367
+     */
361 368
     private function addReferenceMapping(MappingClassMetadata $class, $reference, $type)
362 369
     {
363 370
         $cascade = array_keys((array) $reference->cascade);
@@ -626,6 +633,9 @@  discard block
 block discarded – undo
626 633
         return $result;
627 634
     }
628 635
 
636
+    /**
637
+     * @param string $filename
638
+     */
629 639
     private function validateSchema($filename)
630 640
     {
631 641
         $document = new DOMDocument();
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Persisters/DocumentPersister.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@
 block discarded – undo
22 22
 use Doctrine\Common\EventManager;
23 23
 use Doctrine\Common\Persistence\Mapping\MappingException;
24 24
 use Doctrine\MongoDB\CursorInterface;
25
-use Doctrine\MongoDB\EagerCursor;
26 25
 use Doctrine\ODM\MongoDB\Cursor;
27 26
 use Doctrine\ODM\MongoDB\DocumentManager;
28 27
 use Doctrine\ODM\MongoDB\Query\ReferencePrimer;
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Tools/DocumentGenerator.php 1 patch
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -774,6 +774,10 @@  discard block
 block discarded – undo
774 774
         return implode("\n", $lines);
775 775
     }
776 776
 
777
+    /**
778
+     * @param string $type
779
+     * @param string $defaultValue
780
+     */
777 781
     private function generateDocumentStubMethod(ClassMetadata $metadata, $type, $fieldName, $typeHint = null, $defaultValue = null)
778 782
     {
779 783
         // Add/remove methods should use the singular form of the field name
@@ -958,6 +962,9 @@  discard block
 block discarded – undo
958 962
         return implode("\n", $lines);
959 963
     }
960 964
 
965
+    /**
966
+     * @param integer $type
967
+     */
961 968
     private function getInheritanceTypeString($type)
962 969
     {
963 970
         switch ($type) {
@@ -975,6 +982,9 @@  discard block
 block discarded – undo
975 982
         }
976 983
     }
977 984
 
985
+    /**
986
+     * @param integer $policy
987
+     */
978 988
     private function getChangeTrackingPolicyString($policy)
979 989
     {
980 990
         switch ($policy) {
@@ -992,6 +1002,9 @@  discard block
 block discarded – undo
992 1002
         }
993 1003
     }
994 1004
 
1005
+    /**
1006
+     * @param integer $type
1007
+     */
995 1008
     private function getIdGeneratorTypeString($type)
996 1009
     {
997 1010
         switch ($type) {
Please login to merge, or discard this patch.