@@ -45,7 +45,7 @@  | 
                                                    ||
| 45 | 45 | |
| 46 | 46 | $dumper->setStream($this->getStream());  | 
                                                        
| 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 | }  | 
                                                        
@@ -14,7 +14,7 @@  | 
                                                    ||
| 14 | 14 |      { | 
                                                        
| 15 | 15 |          if (null === $this->children) { | 
                                                        
| 16 | 16 | $this->children = $this->options['reader']->read($this->options['class'], ChildCoreInterface::class);  | 
                                                        
| 17 | -            uasort($this->children, function (ChildCoreInterface $core, ChildCoreInterface $core2) { | 
                                                        |
| 17 | +            uasort($this->children, function(ChildCoreInterface $core, ChildCoreInterface $core2) { | 
                                                        |
| 18 | 18 | return $core->getSequence() > $core2->getSequence();  | 
                                                        
| 19 | 19 | });  | 
                                                        
| 20 | 20 | }  |