/home/techb158/ileadtechnology.com/SSM/vendor/zendframework/zend-diactoros/src
NameSizeModeActions
Exception/-0755rm
functions/-0755rm
Request/-0755rm
Response/-0755rm
AbstractSerializer.php45920644editdlrm
CallbackStream.php34350644editdlrm
HeaderSecurity.php54680644editdlrm
MessageTrait.php129330644editdlrm
PhpInputStream.php18460644editdlrm
RelativeStream.php38480644editdlrm
Request.php21240644editdlrm
RequestFactory.php6630644editdlrm
RequestTrait.php102010644editdlrm
Response.php60310644editdlrm
ResponseFactory.php7280644editdlrm
ServerRequest.php65960644editdlrm
ServerRequestFactory.php31070644editdlrm
Stream.php82630644editdlrm
StreamFactory.php14890644editdlrm
UploadedFile.php76720644editdlrm
UploadedFileFactory.php10410644editdlrm
Uri.php177580644editdlrm
UriFactory.php6220644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/zendframework/zend-diactoros/src/PhpInputStream.php (1846B)
reachedEof) { return $this->cache; } $this->getContents(); return $this->cache; } /** * {@inheritdoc} */ public function isWritable() : bool { return false; } /** * {@inheritdoc} */ public function read($length) : string { $content = parent::read($length); if (! $this->reachedEof) { $this->cache .= $content; } if ($this->eof()) { $this->reachedEof = true; } return $content; } /** * {@inheritdoc} */ public function getContents($maxLength = -1) : string { if ($this->reachedEof) { return $this->cache; } $contents = stream_get_contents($this->resource, $maxLength); $this->cache .= $contents; if ($maxLength === -1 || $this->eof()) { $this->reachedEof = true; } return $contents; } }