| 1 | <?php |
||
| 10 | class StreamInf implements ChildCoreInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var Chrisyue\PhpM3u8\M3u8\Core\Tag |
||
| 14 | */ |
||
| 15 | public $tag; |
||
| 16 | |||
| 17 | private $lines; |
||
| 18 | |||
| 19 | public function setLines(LinesInterface $lines) |
||
| 20 | { |
||
| 21 | $this->lines = $lines; |
||
| 22 | $this->tag->setLines($lines); |
||
| 23 | |||
| 24 | return $this; |
||
| 25 | } |
||
| 26 | |||
| 27 | public function parse() |
||
| 40 | |||
| 41 | public function dump($result) |
||
| 47 | |||
| 48 | public function getSequence() |
||
| 52 | } |
||
| 53 |