Passed
Push — master ( d21a98...866de3 )
by Dawid
02:17
created
src/Mapping/MetaData/PropertyMetaData.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -18,10 +18,10 @@  discard block
 block discarded – undo
18 18
     {
19 19
         $this->propertyName = $propertyName;
20 20
         $this->type = $type;
21
-        $this->accessor = function () use ($propertyName) {
21
+        $this->accessor = function() use ($propertyName) {
22 22
             return $this->$propertyName;
23 23
         };
24
-        $this->writer = function ($value) use ($propertyName)  {
24
+        $this->writer = function($value) use ($propertyName)  {
25 25
             $this->$propertyName = $value;
26 26
         };
27 27
     }
@@ -80,10 +80,10 @@  discard block
 block discarded – undo
80 80
     {
81 81
         $propertyName = $this->propertyName;
82 82
 
83
-        $this->accessor = function () use ($propertyName) {
83
+        $this->accessor = function() use ($propertyName) {
84 84
             return $this->$propertyName;
85 85
         };
86
-        $this->writer = function ($value) use ($propertyName)  {
86
+        $this->writer = function($value) use ($propertyName)  {
87 87
             $this->$propertyName = $value;
88 88
         };
89 89
     }
Please login to merge, or discard this patch.
src/Hydration/HydratorFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
                 break;
107 107
         }
108 108
 
109
-        $objectHydrator =  new $hydratorClass($this->entityManager);
109
+        $objectHydrator = new $hydratorClass($this->entityManager);
110 110
 
111 111
         if ($entityMeta->definesCustomHydrator()) {
112 112
             $customHydratorClass = $entityMeta->getCustomHydratorClass();
Please login to merge, or discard this patch.