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 Tag extends AbstractTag
{
private $options;
public function __construct(array $options)
$this->options = $options;
}
public function getSequence()
return $this->options['sequence'];
protected function getName()
return $this->options['name'];
protected function getTransformers()
return $this->options['transformers'];