?? GreyFile — Mystic File Browser

Current path: home/webdevt/prestashop17/vendor/guzzlehttp/streams/src/



?? Go up: /home/webdevt/prestashop17/vendor/guzzlehttp/streams

?? Viewing: 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);
    }
}


??

??