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