@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | /** |
55 | 55 | * Busca a anotação Doctrine\ORM\Mapping\Column. |
56 | 56 | */ |
57 | - $column = array_filter($propertyAnnotations, function ($annotation) { |
|
57 | + $column = array_filter($propertyAnnotations, function($annotation) { |
|
58 | 58 | return $annotation instanceof Column; |
59 | 59 | }); |
60 | 60 | |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | /** |
66 | 66 | * Busca a anotação Bludata\Doctrine\Common\Annotations\ToObject. |
67 | 67 | */ |
68 | - $toObject = array_filter($propertyAnnotations, function ($annotation) { |
|
68 | + $toObject = array_filter($propertyAnnotations, function($annotation) { |
|
69 | 69 | return $annotation instanceof ToObject; |
70 | 70 | }); |
71 | 71 | |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | /** |
85 | 85 | * Busca pelas anotações Doctrine\ORM\Mapping\ManyToOne || Doctrine\ORM\Mapping\OneToMany || Doctrine\ORM\Mapping\ManyToMany. |
86 | 86 | */ |
87 | - $ormMapping = array_filter($propertyAnnotations, function ($annotation) { |
|
87 | + $ormMapping = array_filter($propertyAnnotations, function($annotation) { |
|
88 | 88 | return $annotation instanceof ManyToOne |
89 | 89 | || |
90 | 90 | $annotation instanceof OneToMany |