tomasz154/php-streams

View on GitHub
src/Stream/StreamInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php


namespace T2\Streams\Stream;

interface StreamInterface
{
    public function getCurrent();
    public function next();
    public function isBounded();
}