Path : /home/dent/public_html/book/vendor/GuzzleHttp/Stream/ |
Current File : /home/dent/public_html/book/vendor/GuzzleHttp/Stream/NoSeekStream.php |
<?php namespace GuzzleHttp\Stream; /** * Stream decorator that prevents a stream from being seeked */ class NoSeekStream implements StreamInterface, MetadataStreamInterface { use StreamDecoratorTrait; public function seek($offset, $whence = SEEK_SET) { return false; } public function isSeekable() { return false; } }