icingaweb2-module-director/library/Director/CoreBeta/Stream.php

18 lines
253 B
PHP

<?php
namespace Icinga\Module\Director\CoreBeta;
abstract class Stream
{
protected $stream;
protected $buffer = '';
protected $bufferLength = 0;
protected function __construct($stream)
{
$this->stream = $stream;
}
}