Completed
Pull Request — develop (#27)
by Chris
02:23
created
src/M3u8/Core/AbstractParentCore.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         }
Please login to merge, or discard this patch.