Completed
Pull Request — master (#1733)
by Gabriel
11:12 queued 01:20
created
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.
lib/Doctrine/ODM/MongoDB/SchemaManager.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Doctrine\ODM\MongoDB\Mapping\ClassMetadata;
6 6
 use Doctrine\ODM\MongoDB\Mapping\ClassMetadataFactory;
7 7
 use MongoDB\Driver\Exception\RuntimeException;
8
-use MongoDB\Driver\WriteConcern;
9 8
 use MongoDB\Model\IndexInfo;
10 9
 
11 10
 class SchemaManager
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.