@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | * Initializes a new FileDriver that looks in the given path(s) for mapping |
27 | 27 | * documents and operates in the specified operating mode. |
28 | 28 | * |
29 | - * @param string[]|null $mappings |
|
29 | + * @param string[] $mappings |
|
30 | 30 | * @param string[]|null $paths |
31 | 31 | * |
32 | 32 | * @throws \Doctrine\ORM\Mapping\MappingException |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | * |
67 | 67 | * @throws MappingException |
68 | 68 | * |
69 | - * @return string[] The names of all mapped classes known to this driver. |
|
69 | + * @return integer[] The names of all mapped classes known to this driver. |
|
70 | 70 | */ |
71 | 71 | public function getAllClassNames() |
72 | 72 | { |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | /** |
161 | 161 | * Get the FQN of a class from a source file. |
162 | 162 | * |
163 | - * @param $pathToFile |
|
163 | + * @param string $pathToFile |
|
164 | 164 | * |
165 | 165 | * @return string |
166 | 166 | */ |
@@ -33,7 +33,7 @@ |
||
33 | 33 | */ |
34 | 34 | public function __construct($mappings, $paths) |
35 | 35 | { |
36 | - $this->fluentFactory = function (ClassMetadata $metadata) { |
|
36 | + $this->fluentFactory = function(ClassMetadata $metadata) { |
|
37 | 37 | return new Builder(new ClassMetadataBuilder($metadata)); |
38 | 38 | }; |
39 | 39 |