@@ -38,6 +38,7 @@ |
||
38 | 38 | |
39 | 39 | /** |
40 | 40 | * {@inheritDoc} |
41 | + * @param \Doctrine\Common\Persistence\Mapping\Driver\SymfonyFileLocator $locator |
|
41 | 42 | */ |
42 | 43 | public function __construct($locator, $fileExtension = self::DEFAULT_FILE_EXTENSION) |
43 | 44 | { |
@@ -31,7 +31,6 @@ |
||
31 | 31 | /** |
32 | 32 | * Combines any number of criteria arrays as clauses of an "$and" query. |
33 | 33 | * |
34 | - * @param array $criteria,... Any number of query criteria arrays |
|
35 | 34 | * @return array |
36 | 35 | */ |
37 | 36 | public function merge(/* array($field => $value), ... */) |
@@ -159,7 +159,7 @@ |
||
159 | 159 | * |
160 | 160 | * @see http://php.net/manual/en/iterator.key.php |
161 | 161 | * @see http://php.net/manual/en/mongocommandcursor.key.php |
162 | - * @return integer |
|
162 | + * @return string |
|
163 | 163 | */ |
164 | 164 | public function key() |
165 | 165 | { |
@@ -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); |
@@ -97,7 +97,7 @@ discard block |
||
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 |
||
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 | */ |
@@ -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 |
@@ -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 | { |
@@ -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) |
@@ -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 | */ |