@@ -1,6 +1,5 @@ |
||
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; |
@@ -23,7 +23,7 @@ discard block |
||
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 |
||
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 | } |