Your IP : 3.16.48.5


Current Path : /home/bitrix/ext_www/easy-comfort.com.ua/local/vendor/guzzlehttp/streams/src/
Upload File :
Current File : /home/bitrix/ext_www/easy-comfort.com.ua/local/vendor/guzzlehttp/streams/src/NoSeekStream.php

<?php
namespace GuzzleHttp\Stream;

/**
 * Stream decorator that prevents a stream from being seeked
 */
class NoSeekStream implements StreamInterface
{
    use StreamDecoratorTrait;

    public function seek($offset, $whence = SEEK_SET)
    {
        return false;
    }

    public function isSeekable()
    {
        return false;
    }

    public function attach($stream)
    {
        $this->stream->attach($stream);
    }
}