Completed
Push — master ( a2b732...080f9b )
by Rai
10s
created
src/Doctrine/Common/Traits/SetPropertiesEntityTrait.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.