for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Chrisyue\PhpM3u8\M3u8\AnnotationReadable;
use Chrisyue\PhpM3u8\M3u8\M3u8Interface;
use Chrisyue\PhpM3u8\M3u8\SequenceAwareInterface;
/**
* @Annotation
* @Target("PROPERTY")
*/
class MediaSegment extends AbstractConfigurable implements SequenceAwareInterface
{
public function getSequence()
return $this->getOption('sequence');
}
protected function couldTryNextLine()
if (null === $this->getResult()) {
return false;
if (null !== $this->getResult()->uri) {
return true;