@@ -97,7 +97,7 @@ |
||
97 | 97 | * - reflClass (ReflectionClass) |
98 | 98 | * - reflFields (ReflectionProperty array) |
99 | 99 | * |
100 | - * @return array The names of all the fields that should be serialized. |
|
100 | + * @return string[] The names of all the fields that should be serialized. |
|
101 | 101 | */ |
102 | 102 | public function __sleep() |
103 | 103 | { |
@@ -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), ... */) |
@@ -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); |
@@ -771,6 +771,10 @@ discard block |
||
771 | 771 | return implode("\n", $lines); |
772 | 772 | } |
773 | 773 | |
774 | + /** |
|
775 | + * @param string $type |
|
776 | + * @param string $defaultValue |
|
777 | + */ |
|
774 | 778 | private function generateDocumentStubMethod(ClassMetadataInfo $metadata, $type, $fieldName, $typeHint = null, $defaultValue = null) |
775 | 779 | { |
776 | 780 | // Add/remove methods should use the singular form of the field name |
@@ -955,6 +959,9 @@ discard block |
||
955 | 959 | return implode("\n", $lines); |
956 | 960 | } |
957 | 961 | |
962 | + /** |
|
963 | + * @param integer $type |
|
964 | + */ |
|
958 | 965 | private function getInheritanceTypeString($type) |
959 | 966 | { |
960 | 967 | switch ($type) { |
@@ -972,6 +979,9 @@ discard block |
||
972 | 979 | } |
973 | 980 | } |
974 | 981 | |
982 | + /** |
|
983 | + * @param integer $policy |
|
984 | + */ |
|
975 | 985 | private function getChangeTrackingPolicyString($policy) |
976 | 986 | { |
977 | 987 | switch ($policy) { |
@@ -989,6 +999,9 @@ discard block |
||
989 | 999 | } |
990 | 1000 | } |
991 | 1001 | |
1002 | + /** |
|
1003 | + * @param string $type |
|
1004 | + */ |
|
992 | 1005 | private function getIdGeneratorTypeString($type) |
993 | 1006 | { |
994 | 1007 | switch ($type) { |
@@ -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); |
@@ -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) |
@@ -1085,7 +1085,7 @@ discard block |
||
1085 | 1085 | /** |
1086 | 1086 | * Gets the ReflectionProperties of the mapped class. |
1087 | 1087 | * |
1088 | - * @return array An array of ReflectionProperty instances. |
|
1088 | + * @return \ReflectionProperty[] An array of ReflectionProperty instances. |
|
1089 | 1089 | */ |
1090 | 1090 | public function getReflectionProperties() |
1091 | 1091 | { |
@@ -1900,7 +1900,7 @@ discard block |
||
1900 | 1900 | * |
1901 | 1901 | * @param string $dbFieldName |
1902 | 1902 | * |
1903 | - * @return array |
|
1903 | + * @return string |
|
1904 | 1904 | * @throws MappingException |
1905 | 1905 | */ |
1906 | 1906 | public function getFieldMappingByDbFieldName($dbFieldName) |
@@ -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 | */ |