PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
google-site-kit
/
third-party
/
guzzlehttp
/
streams
/
src
<?php namespace Google\Site_Kit_Dependencies\GuzzleHttp\Stream; /** * Stream decorator that prevents a stream from being seeked */ class NoSeekStream implements \Google\Site_Kit_Dependencies\GuzzleHttp\Stream\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); } }
[+]
..
[-] LazyOpenStream.php
[edit]
[-] NullStream.php
[edit]
[-] DroppingStream.php
[edit]
[-] InflateStream.php
[edit]
[-] AsyncReadStream.php
[edit]
[-] AppendStream.php
[edit]
[-] NoSeekStream.php
[edit]
[-] BufferStream.php
[edit]
[-] Stream.php
[edit]
[-] FnStream.php
[edit]
[-] Utils.php
[edit]
[-] LimitStream.php
[edit]
[-] StreamDecoratorTrait.php
[edit]
[-] GuzzleStreamWrapper.php
[edit]
[-] MetadataStreamInterface.php
[edit]
[-] PumpStream.php
[edit]
[-] StreamInterface.php
[edit]
[+]
Exception
[-] CachingStream.php
[edit]