<?php interface StreamReader { public function read( int $length ): string; public function write( string $data ): bool; public function seek( int $offset, int $whence = SEEK_SET ): bool; public function tell(): int; public function eof(): bool; public function rewind(): void; }