Fix wrong annotation
Without above fix I'm getting "[Semantical Error] The annotation "@array" in method Doctrine\ORM\Mapping\ClassMetadataInfo::mapEmbedded() was never imported. Did you maybe forget to add a "use" statement for this annotation?"
This commit is contained in:
parent
02daf0049a
commit
d888d7d1c0
1 changed files with 1 additions and 1 deletions
|
@ -3157,7 +3157,7 @@ class ClassMetadataInfo implements ClassMetadata
|
||||||
/**
|
/**
|
||||||
* Map Embedded Class
|
* Map Embedded Class
|
||||||
*
|
*
|
||||||
* @array $mapping
|
* @param array $mapping
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function mapEmbedded(array $mapping)
|
public function mapEmbedded(array $mapping)
|
||||||
|
|
Loading…
Add table
Reference in a new issue