@@ -84,6 +84,11 @@ |
||
84 | 84 | return $className; |
85 | 85 | } |
86 | 86 | |
87 | + /** |
|
88 | + * @param string $for |
|
89 | + * @param string $targetFqcn |
|
90 | + * @param string|false $fileName |
|
91 | + */ |
|
87 | 92 | private function generateCollectionClass($for, $targetFqcn, $fileName) |
88 | 93 | { |
89 | 94 | $exploded = explode('\\', $targetFqcn); |
@@ -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) |
@@ -90,6 +90,9 @@ |
||
90 | 90 | */ |
91 | 91 | abstract protected function getStageName(); |
92 | 92 | |
93 | + /** |
|
94 | + * @param Expr $expression |
|
95 | + */ |
|
93 | 96 | private function convertExpression($expression) |
94 | 97 | { |
95 | 98 | if (is_array($expression)) { |
@@ -325,6 +325,9 @@ discard block |
||
325 | 325 | return Type::convertPHPToDatabaseValue(Expr::convertExpression($expression)); |
326 | 326 | } |
327 | 327 | |
328 | + /** |
|
329 | + * @param string $fieldName |
|
330 | + */ |
|
328 | 331 | private function convertTargetFieldName($fieldName) |
329 | 332 | { |
330 | 333 | if (is_array($fieldName)) { |
@@ -347,6 +350,9 @@ discard block |
||
347 | 350 | return $this->dm->getUnitOfWork()->getDocumentPersister($class->name); |
348 | 351 | } |
349 | 352 | |
353 | + /** |
|
354 | + * @param string $fieldName |
|
355 | + */ |
|
350 | 356 | private function getReferencedFieldName($fieldName, array $mapping) |
351 | 357 | { |
352 | 358 | if ( ! $mapping['isOwningSide']) { |
@@ -171,6 +171,9 @@ |
||
171 | 171 | return $this; |
172 | 172 | } |
173 | 173 | |
174 | + /** |
|
175 | + * @param string $fieldName |
|
176 | + */ |
|
174 | 177 | protected function prepareFieldName($fieldName, ClassMetadata $class = null) |
175 | 178 | { |
176 | 179 | if ( ! $class) { |
@@ -46,6 +46,7 @@ |
||
46 | 46 | |
47 | 47 | /** |
48 | 48 | * {@inheritdoc} |
49 | + * @param string $collection |
|
49 | 50 | */ |
50 | 51 | public function out($collection) |
51 | 52 | { |
@@ -6,7 +6,6 @@ |
||
6 | 6 | use Doctrine\Common\Collections\Collection; |
7 | 7 | use Doctrine\Common\Collections\Criteria; |
8 | 8 | use Doctrine\Common\Collections\Selectable; |
9 | -use Doctrine\Common\Inflector\Inflector; |
|
10 | 9 | use Doctrine\Common\Persistence\ObjectRepository; |
11 | 10 | use Doctrine\ODM\MongoDB\Mapping\ClassMetadata; |
12 | 11 | use Doctrine\ODM\MongoDB\Query\QueryExpressionVisitor; |
@@ -570,7 +570,7 @@ |
||
570 | 570 | /** |
571 | 571 | * @param string $documentName |
572 | 572 | * |
573 | - * @return array |
|
573 | + * @return string |
|
574 | 574 | */ |
575 | 575 | private function runShardCollectionCommand($documentName) |
576 | 576 | { |
@@ -5,7 +5,6 @@ |
||
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 |
@@ -1117,7 +1117,7 @@ |
||
1117 | 1117 | * @since 1.5 |
1118 | 1118 | * @param mixed|self $start An integer that specifies the start of the sequence. Can be any valid expression that resolves to an integer. |
1119 | 1119 | * @param mixed|self $end An integer that specifies the exclusive upper limit of the sequence. Can be any valid expression that resolves to an integer. |
1120 | - * @param mixed|self $step Optional. An integer that specifies the increment value. Can be any valid expression that resolves to a non-zero integer. Defaults to 1. |
|
1120 | + * @param integer $step Optional. An integer that specifies the increment value. Can be any valid expression that resolves to a non-zero integer. Defaults to 1. |
|
1121 | 1121 | * @return $this |
1122 | 1122 | */ |
1123 | 1123 | public function range($start, $end, $step = 1) |