/home/techb158/dev.balacoffee.com/vendor/nyholm/psr7/src
NameSizeModeActions
Factory/-0755rm
MessageTrait.php74240644editdlrm
Request.php13470644editdlrm
RequestTrait.php29720644editdlrm
Response.php42820644editdlrm
ServerRequest.php48900644editdlrm
Stream.php111980644editdlrm
StreamTrait.php14770644editdlrm
UploadedFile.php55280644editdlrm
Uri.php97430644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/nyholm/psr7/src/StreamTrait.php (1477B)
= 70400 || (new \ReflectionMethod(StreamInterface::class, '__toString'))->hasReturnType()) { /** * @internal */ trait StreamTrait { public function __toString(): string { if ($this->isSeekable()) { $this->seek(0); } return $this->getContents(); } } } else { /** * @internal */ trait StreamTrait { /** * @return string */ public function __toString() { try { if ($this->isSeekable()) { $this->seek(0); } return $this->getContents(); } catch (\Throwable $e) { if (\is_array($errorHandler = \set_error_handler('var_dump'))) { $errorHandler = $errorHandler[0] ?? null; } \restore_error_handler(); if ($e instanceof \Error || $errorHandler instanceof SymfonyErrorHandler || $errorHandler instanceof SymfonyLegacyErrorHandler) { return \trigger_error((string) $e, \E_USER_ERROR); } return ''; } } } }