@@ -77,7 +77,7 @@ |
||
77 | 77 | } |
78 | 78 | |
79 | 79 | $hasDefinitionInside = false; |
80 | - array_walk_recursive($value, function ($item) use (&$hasDefinitionInside) { |
|
80 | + array_walk_recursive($value, function($item) use (&$hasDefinitionInside) { |
|
81 | 81 | if ($item instanceof ReferenceDefinition) { |
82 | 82 | $hasDefinitionInside = true; |
83 | 83 | } |
@@ -24,7 +24,7 @@ |
||
24 | 24 | $resolved[$name] = true; |
25 | 25 | if ($parameter->isVariadic()) { |
26 | 26 | $_argument = !is_array($arguments[$name]) ? [$arguments[$name]] : $arguments[$name]; |
27 | - $result = array_merge($result, $_argument); |
|
27 | + $result = array_merge($result, $_argument); |
|
28 | 28 | } else { |
29 | 29 | $result[] = $arguments[$name]; |
30 | 30 | } |