for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Chrisyue\PhpM3u8\M3u8;
/**
* @Annotation
* @Target("PROPERTY")
*/
class Uri extends AbstractM3u8 implements SequenceAwareInterface
{
public function parse()
$lineInfo = $this->getStream()->read();
if (isset($lineInfo['tag'])) {
return $this;
}
return $this->setResult($lineInfo['value']);
public function dump()
$this->getStream()->write(['value' => $this->getResult()]);
public function getSequence()
return 999999;