Completed
Pull Request — develop (#27)
by Chris
02:25
created
test.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Chrisyue\PhpM3u8\Document\Rfc8216\MediaPlaylist;
4 3
 use Chrisyue\PhpM3u8\Document\Rfc8216\MasterPlaylist;
5 4
 use Chrisyue\PhpM3u8\Stream\FileStream;
6 5
 use Chrisyue\PhpM3u8\Line\Lines;
Please login to merge, or discard this patch.
src/Dumper/ParentDumper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
     public function dump($value)
25 25
     {
26
-        uasort($this->children, function (ChildDumperInterface $child, ChildDumperInterface $child2) {
26
+        uasort($this->children, function(ChildDumperInterface $child, ChildDumperInterface $child2) {
27 27
             return $child->getSequence() > $child2->getSequence();
28 28
         });
29 29
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
                 continue;
35 35
             }
36 36
 
37
-            $child->isRepeatable() ? array_walk($childResult, function ($val) use ($child) {
37
+            $child->isRepeatable() ? array_walk($childResult, function($val) use ($child) {
38 38
                 $child->dump($val);
39 39
             }) : $child->dump($childResult);
40 40
         }
Please login to merge, or discard this patch.