Completed
Pull Request — master (#23)
by John
02:43
created
src/Hydrator/Processors/Object/ComplexTypeProcessor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
         $lineage = [];
114 114
 
115 115
         // Determine lineage
116
-        $traverseUp = function (ComplexType $type) use (&$lineage, &$traverseUp) {
116
+        $traverseUp = function(ComplexType $type) use (&$lineage, &$traverseUp) {
117 117
 
118 118
             $lineage[] = $type;
119 119
             $parents   = $type->getParents();
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
 
128 128
         $lineage = array_reverse($lineage);
129 129
 
130
-        $applyProperties = function ($object, $node) use ($lineage) {
130
+        $applyProperties = function($object, $node) use ($lineage) {
131 131
             foreach ($lineage as $type) {
132 132
                 $className    = $type->getClassName();
133 133
                 $objectSchema = $type->getSchema();
Please login to merge, or discard this patch.