@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | public function dump($result) |
34 | 34 | { |
35 | 35 | $children = $this->getChildren(); |
36 | - uasort($children, function (ChildCoreInterface $core, ChildCoreInterface $core2) { |
|
36 | + uasort($children, function(ChildCoreInterface $core, ChildCoreInterface $core2) { |
|
37 | 37 | return $core->getSequence() > $core2->getSequence(); |
38 | 38 | }); |
39 | 39 | |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | |
46 | 46 | $dumper->setLines($this->getLines()); |
47 | 47 | |
48 | - is_array($childResult) ? array_walk($childResult, function ($val) use ($dumper) { |
|
48 | + is_array($childResult) ? array_walk($childResult, function($val) use ($dumper) { |
|
49 | 49 | $dumper->dump($val); |
50 | 50 | }) : $dumper->dump($childResult); |
51 | 51 | } |