/var/www/vhosts/ihelp.ro/httpdocs/vendor/laminas/laminas-diactoros/src
NameSizeModeActions
Exception/-0755rm
functions/-0755rm
Request/-0755rm
Response/-0755rm
ServerRequestFilter/-0755rm
AbstractSerializer.php44500644editdlrm
CallbackStream.php32450644editdlrm
ConfigProvider.php19590644editdlrm
HeaderSecurity.php48330644editdlrm
MessageTrait.php132150644editdlrm
Module.php2350644editdlrm
PhpInputStream.php15340644editdlrm
RelativeStream.php32590644editdlrm
Request.php18700644editdlrm
RequestFactory.php3750644editdlrm
RequestTrait.php99600644editdlrm
Response.php58100644editdlrm
ResponseFactory.php4400644editdlrm
ServerRequest.php59730644editdlrm
ServerRequestFactory.php32210644editdlrm
Stream.php85230644editdlrm
StreamFactory.php9040644editdlrm
UploadedFile.php71190644editdlrm
UploadedFileFactory.php7560644editdlrm
Uri.php184400644editdlrm
UriFactory.php79040644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/laminas/laminas-diactoros/src/PhpInputStream.php (1534B)
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; } }