@@ -33,7 +33,7 @@ discard block |
||
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 |
||
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 | } |
@@ -7,7 +7,6 @@ |
||
7 | 7 | use Chrisyue\PhpM3u8\M3u8\Transformer\TagInfo; |
8 | 8 | use Chrisyue\PhpM3u8\M3u8\PropertyReader\Reader; |
9 | 9 | use Chrisyue\PhpM3u8\M3u8\Core\Playlist; |
10 | -use Chrisyue\PhpM3u8\Document\Rfc8216\MediaPlaylist; |
|
11 | 10 | use Chrisyue\PhpM3u8\Stream\FileStream; |
12 | 11 | |
13 | 12 | class PlaylistFacade |