for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Chrisyue\PhpM3u8\M3u8;
use Chrisyue\PhpM3u8\Stream\StreamInterface;
abstract class AbstractM3u8 implements M3u8Interface
{
private $stream;
private $result;
public function setStream(StreamInterface $stream)
$this->stream = $stream;
return $this;
}
public function getStream()
return $this->stream;
public function setResult($result)
$this->result = $result;
public function getResult()
return $this->result;