@@ -113,7 +113,7 @@ discard block |
||
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 |
||
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(); |