mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-12-09 14:10:33 +01:00
19 lines
254 B
PHP
19 lines
254 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;
|
|
}
|
|
|
|
}
|