@@ -582,9 +582,9 @@ |
||
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 | { |
@@ -36,6 +36,7 @@ discard block |
||
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 |
||
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 |
||
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); |
@@ -20,7 +20,6 @@ |
||
20 | 20 | namespace Doctrine\ODM\MongoDB\Query; |
21 | 21 | |
22 | 22 | use Doctrine\ODM\MongoDB\DocumentManager; |
23 | -use Doctrine\ODM\MongoDB\Hydrator; |
|
24 | 23 | use Doctrine\ODM\MongoDB\Mapping\ClassMetadataInfo; |
25 | 24 | |
26 | 25 | /** |
@@ -91,7 +91,7 @@ discard block |
||
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 |
||
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 | */ |
@@ -2631,7 +2631,7 @@ |
||
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) |
@@ -22,7 +22,6 @@ |
||
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\Mapping\ClassMetadataInfo; |
@@ -606,7 +606,7 @@ |
||
606 | 606 | * This is just a convenient shortcut for getRepository($documentName)->find($id). |
607 | 607 | * |
608 | 608 | * @param string $documentName |
609 | - * @param mixed $identifier |
|
609 | + * @param \MongoId $identifier |
|
610 | 610 | * @param int $lockMode |
611 | 611 | * @param int $lockVersion |
612 | 612 | * @return object $document |
@@ -89,6 +89,9 @@ discard block |
||
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 |
||
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 |
||
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)) { |
@@ -149,6 +149,7 @@ discard block |
||
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 |
||
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) { |