PATH:
home
/
lab2454c
/
westernclear.net
/
vendor
/
guzzlehttp
/
psr7
/
src
<?php declare(strict_types=1); namespace GuzzleHttp\Psr7; use Psr\Http\Message\StreamInterface; /** * Stream decorator that prevents a stream from being seeked. */ final class NoSeekStream implements StreamInterface { use StreamDecoratorTrait; public function seek($offset, $whence = SEEK_SET): void { throw new \RuntimeException('Cannot seek a NoSeekStream'); } public function isSeekable(): bool { return false; } }
[-] StreamWrapper.php
[edit]
[-] Message.php
[edit]
[-] StreamDecoratorTrait.php
[edit]
[-] FnStream.php
[edit]
[-] DroppingStream.php
[edit]
[+]
..
[-] BufferStream.php
[edit]
[+]
Exception
[-] Query.php
[edit]
[-] MessageTrait.php
[edit]
[-] Request.php
[edit]
[-] UploadedFile.php
[edit]
[-] NoSeekStream.php
[edit]
[-] InflateStream.php
[edit]
[-] Utils.php
[edit]
[-] Header.php
[edit]
[-] Stream.php
[edit]
[-] MimeType.php
[edit]
[-] CachingStream.php
[edit]
[-] Rfc7230.php
[edit]
[-] UriNormalizer.php
[edit]
[-] AppendStream.php
[edit]
[-] Uri.php
[edit]
[-] LimitStream.php
[edit]
[-] PumpStream.php
[edit]
[-] UriResolver.php
[edit]
[-] MultipartStream.php
[edit]
[-] LazyOpenStream.php
[edit]
[-] ServerRequest.php
[edit]
[-] Response.php
[edit]
[-] HttpFactory.php
[edit]