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