/home/desid573/cf.desidrivers.com.au/google/api/vendor/guzzlehttp/psr7/src
NameSizeModeActions
AppendStream.php55010644editdlrm
BufferStream.php30430644editdlrm
CachingStream.php42520644editdlrm
DroppingStream.php10800644editdlrm
FnStream.php36600644editdlrm
functions.php244520644editdlrm
functions_include.php1560644editdlrm
InflateStream.php17580644editdlrm
LazyOpenStream.php8800644editdlrm
LimitStream.php42100644editdlrm
MessageTrait.php45790644editdlrm
MultipartStream.php46930644editdlrm
NoSeekStream.php4240644editdlrm
PumpStream.php40350644editdlrm
Request.php33830644editdlrm
Response.php40620644editdlrm
ServerRequest.php94070644editdlrm
Stream.php67490644editdlrm
StreamDecoratorTrait.php32750644editdlrm
StreamWrapper.php28060644editdlrm
UploadedFile.php75430644editdlrm
Uri.php198110644editdlrm
UriNormalizer.php83160644editdlrm
UriResolver.php87740644editdlrm
Edit: /home/desid573/cf.desidrivers.com.au/google/api/vendor/guzzlehttp/psr7/src/DroppingStream.php (1080B)
stream = $stream; $this->maxLength = $maxLength; } public function write($string) { $diff = $this->maxLength - $this->stream->getSize(); // Begin returning 0 when the underlying stream is too large. if ($diff <= 0) { return 0; } // Write the stream or a subset of the stream if needed. if (strlen($string) < $diff) { return $this->stream->write($string); } return $this->stream->write(substr($string, 0, $diff)); } }