PATH:
home
/
letacommog
/
gdiags.fr
/
wp-content
/
plugins
/
google-site-kit
/
third-party
/
guzzlehttp
/
streams
/
src
<?php namespace Google\Site_Kit_Dependencies\GuzzleHttp\Stream; /** * Stream decorator that begins dropping data once the size of the underlying * stream becomes too full. */ class DroppingStream implements \Google\Site_Kit_Dependencies\GuzzleHttp\Stream\StreamInterface { use StreamDecoratorTrait; private $maxLength; /** * @param StreamInterface $stream Underlying stream to decorate. * @param int $maxLength Maximum size before dropping data. */ public function __construct(\Google\Site_Kit_Dependencies\GuzzleHttp\Stream\StreamInterface $stream, $maxLength) { $this->stream = $stream; $this->maxLength = $maxLength; } public function write($string) { $diff = $this->maxLength - $this->stream->getSize(); // Begin returning false when the underlying stream is too large. if ($diff <= 0) { return \false; } // Write the stream or a subset of the stream if needed. if (\strlen($string) < $diff) { return $this->stream->write($string); } $this->stream->write(\substr($string, 0, $diff)); return \false; } }
[+]
..
[-] InflateStream.php
[edit]
[-] LazyOpenStream.php
[edit]
[-] Stream.php
[edit]
[-] DroppingStream.php
[edit]
[-] GuzzleStreamWrapper.php
[edit]
[-] AsyncReadStream.php
[edit]
[-] NullStream.php
[edit]
[-] MetadataStreamInterface.php
[edit]
[-] StreamDecoratorTrait.php
[edit]
[-] BufferStream.php
[edit]
[+]
Exception
[-] NoSeekStream.php
[edit]
[-] AppendStream.php
[edit]
[-] LimitStream.php
[edit]
[-] Utils.php
[edit]
[-] CachingStream.php
[edit]
[-] StreamInterface.php
[edit]
[-] FnStream.php
[edit]
[-] PumpStream.php
[edit]