/var/www/vhosts/ihelp.ro/_OLD/vendor/laminas/laminas-diactoros/src
NameSizeModeActions
Exception/-0755rm
functions/-0755rm
Request/-0755rm
Response/-0755rm
AbstractSerializer.php45860644editdlrm
CallbackStream.php34290644editdlrm
ConfigProvider.php15770644editdlrm
HeaderSecurity.php54380644editdlrm
MessageTrait.php129280644editdlrm
Module.php5210644editdlrm
PhpInputStream.php18410644editdlrm
RelativeStream.php38460644editdlrm
Request.php21190644editdlrm
RequestFactory.php6620644editdlrm
RequestTrait.php101960644editdlrm
Response.php60260644editdlrm
ResponseFactory.php7270644editdlrm
ServerRequest.php65910644editdlrm
ServerRequestFactory.php30880644editdlrm
Stream.php82580644editdlrm
StreamFactory.php14880644editdlrm
UploadedFile.php76670644editdlrm
UploadedFileFactory.php10400644editdlrm
Uri.php177530644editdlrm
UriFactory.php6210644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/laminas/laminas-diactoros/src/PhpInputStream.php (1841B)
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; } }