| @@ -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), ... */) | 
| @@ -841,7 +841,7 @@ | ||
| 841 | 841 | /** | 
| 842 | 842 | * Gets the ReflectionProperties of the mapped class. | 
| 843 | 843 | * | 
| 844 | - * @return array An array of ReflectionProperty instances. | |
| 844 | + * @return \ReflectionProperty[] An array of ReflectionProperty instances. | |
| 845 | 845 | */ | 
| 846 | 846 | public function getReflectionProperties() | 
| 847 | 847 |      { | 
| @@ -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); | 
| @@ -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) { | 
| @@ -19,7 +19,6 @@ | ||
| 19 | 19 | |
| 20 | 20 | namespace Doctrine\ODM\MongoDB\Tools\Console\Command; | 
| 21 | 21 | |
| 22 | -use Doctrine\ODM\MongoDB\Mapping\ClassMetadataInfo; | |
| 23 | 22 | use Doctrine\ODM\MongoDB\Tools\Console\MetadataFilter; | 
| 24 | 23 | use Symfony\Component\Console\Input\InputArgument; | 
| 25 | 24 | use Symfony\Component\Console\Input\InputOption; | 
| @@ -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 | */ |