@@ -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); |
@@ -2,10 +2,10 @@ |
||
| 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 |
@@ -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) |
@@ -383,7 +383,7 @@ discard block |
||
| 383 | 383 | * |
| 384 | 384 | * @see http://docs.mongodb.org/manual/reference/operator/aggregation/out/ |
| 385 | 385 | * |
| 386 | - * @param string $collection |
|
| 386 | + * @param string $from |
|
| 387 | 387 | * @return Stage\Out |
| 388 | 388 | */ |
| 389 | 389 | public function out($from) |
@@ -549,7 +549,7 @@ discard block |
||
| 549 | 549 | } |
| 550 | 550 | |
| 551 | 551 | /** |
| 552 | - * @param Cursor $cursor |
|
| 552 | + * @param \Traversable $cursor |
|
| 553 | 553 | * |
| 554 | 554 | * @return Iterator |
| 555 | 555 | */ |
@@ -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)) { |
@@ -26,7 +26,6 @@ |
||
| 26 | 26 | use Doctrine\ODM\MongoDB\PersistentCollection\PersistentCollectionInterface; |
| 27 | 27 | use Doctrine\ODM\MongoDB\Proxy\Proxy; |
| 28 | 28 | use Doctrine\ODM\MongoDB\UnitOfWork; |
| 29 | -use MongoDB\Driver\ReadPreference; |
|
| 30 | 29 | |
| 31 | 30 | /** |
| 32 | 31 | * The ReferencePrimer is responsible for priming reference relationships. |
@@ -443,7 +443,7 @@ discard block |
||
| 443 | 443 | * the unique index. Additionally, the background option is only |
| 444 | 444 | * relevant to index creation and is not considered. |
| 445 | 445 | * |
| 446 | - * @param array|IndexInfo $mongoIndex Mongo index data. |
|
| 446 | + * @param IndexInfo $mongoIndex Mongo index data. |
|
| 447 | 447 | * @param array $documentIndex Document index data. |
| 448 | 448 | * @return bool True if the indexes are equivalent, otherwise false. |
| 449 | 449 | */ |
@@ -589,9 +589,9 @@ discard block |
||
| 589 | 589 | } |
| 590 | 590 | |
| 591 | 591 | /** |
| 592 | - * @param $documentName |
|
| 592 | + * @param string $documentName |
|
| 593 | 593 | * |
| 594 | - * @return array |
|
| 594 | + * @return string |
|
| 595 | 595 | */ |
| 596 | 596 | private function runShardCollectionCommand($documentName) |
| 597 | 597 | { |
@@ -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 |
@@ -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']) { |
@@ -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; |