Completed
Pull Request — master (#1605)
by Maciej
09:26
created
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/Query/Builder.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
      * Construct a Builder
92 92
      *
93 93
      * @param DocumentManager $dm
94
-     * @param string[]|string|null $documentName (optional) an array of document names, the document name, or none
94
+     * @param string|null $documentName (optional) an array of document names, the document name, or none
95 95
      */
96 96
     public function __construct(DocumentManager $dm, $documentName = null)
97 97
     {
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
      * If a custom callable is used, its signature should conform to the default
145 145
      * Closure defined in {@link ReferencePrimer::__construct()}.
146 146
      *
147
-     * @param boolean|callable $primer
147
+     * @param boolean $primer
148 148
      * @return $this
149 149
      * @throws \InvalidArgumentException If $primer is not boolean or callable
150 150
      */
Please login to merge, or discard this patch.