summaryrefslogtreecommitdiffstats
path: root/library/Director/CoreBeta/Stream.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--library/Director/CoreBeta/Stream.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/library/Director/CoreBeta/Stream.php b/library/Director/CoreBeta/Stream.php
new file mode 100644
index 0000000..5add9a3
--- /dev/null
+++ b/library/Director/CoreBeta/Stream.php
@@ -0,0 +1,17 @@
+<?php
+
+namespace Icinga\Module\Director\CoreBeta;
+
+abstract class Stream
+{
+ protected $stream;
+
+ protected $buffer = '';
+
+ protected $bufferLength = 0;
+
+ protected function __construct($stream)
+ {
+ $this->stream = $stream;
+ }
+}