Completed
Pull Request — master (#1554)
by Gocha
15:10
created
lib/Doctrine/ODM/MongoDB/Query/Query.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
      * @param boolean $hydrate
98 98
      * @param boolean $refresh
99 99
      * @param array $primers
100
-     * @param null $requireIndexes deprecated
100
+     * @param boolean $requireIndexes deprecated
101 101
      * @param boolean $readOnly
102 102
      */
103 103
     public function __construct(DocumentManager $dm, ClassMetadata $class, Collection $collection, array $query = array(), array $options = array(), $hydrate = true, $refresh = false, array $primers = array(), $requireIndexes = null, $readOnly = false)
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
     /**
226 226
      * Gets an array of the unindexed fields in this query.
227 227
      *
228
-     * @return array
228
+     * @return string
229 229
      *
230 230
      * @deprecated method was deprecated in 1.2 and will be removed in 2.0
231 231
      */
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/Tools/Console/Command/Schema/ValidateCommand.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Doctrine\ODM\MongoDB\Tools\Console\Command\Schema;
4 4
 
5
-use Doctrine\Common\Cache\VoidCache;
6
-use Doctrine\ODM\MongoDB\DocumentManager;
7
-use Symfony\Component\Console\Command\Command;
8
-use Symfony\Component\Console\Input\InputInterface;
5
+use Doctrine\Common\Cache\VoidCache;
6
+use Doctrine\ODM\MongoDB\DocumentManager;
7
+use Symfony\Component\Console\Command\Command;
8
+use Symfony\Component\Console\Input\InputInterface;
9 9
 use Symfony\Component\Console\Output\OutputInterface;
10 10
 
11 11
 class ValidateCommand extends Command
Please login to merge, or discard this patch.
lib/Doctrine/ODM/MongoDB/SchemaManager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -582,9 +582,9 @@
 block discarded – undo
582 582
     }
583 583
 
584 584
     /**
585
-     * @param $documentName
585
+     * @param string $documentName
586 586
      *
587
-     * @return array
587
+     * @return string
588 588
      */
589 589
     private function runShardCollectionCommand($documentName)
590 590
     {
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.