diff options
Diffstat (limited to 'model/StreamList.php')
-rw-r--r-- | model/StreamList.php | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/model/StreamList.php b/model/StreamList.php new file mode 100644 index 0000000..4fd035e --- /dev/null +++ b/model/StreamList.php @@ -0,0 +1,28 @@ +<?php + +class StreamList implements AggregateIterator { + private $streams = array(); + + public function getIterator() { + return new ArrayIterator($this->streams); + } + + + public function hasTranslation() { + } + + public function hasRTMP() { + } + + public function hasHLS() { + } + + public function hasWebM() { + } + + public function hasHD() { + } + + public function hasSD() { + } +} |