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

19 lines
254 B
PHP
Raw Normal View History

2015-06-24 11:25:22 +02:00
<?php
namespace Icinga\Module\Director\CoreBeta;
abstract class Stream
{
protected $stream;
protected $buffer = '';
protected $bufferLength = 0;
protected function __construct($stream)
{
$this->stream = $stream;
}
}