/var/www/vhosts/ihelp.ro/_OLD/vendor/laminas/laminas-diactoros/src/Response
NameSizeModeActions
ArraySerializer.php29480644editdlrm
EmptyResponse.php12010644editdlrm
HtmlResponse.php23770644editdlrm
InjectContentTypeTrait.php10140644editdlrm
JsonResponse.php48550644editdlrm
RedirectResponse.php16910644editdlrm
Serializer.php33660644editdlrm
TextResponse.php23860644editdlrm
XmlResponse.php24020644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/laminas/laminas-diactoros/src/Response/TextResponse.php (2386B)
createBody($text), $status, $this->injectContentType('text/plain; charset=utf-8', $headers) ); } /** * Create the message body. * * @param string|StreamInterface $text * @throws Exception\InvalidArgumentException if $text is neither a string or stream. */ private function createBody($text) : StreamInterface { if ($text instanceof StreamInterface) { return $text; } if (! is_string($text)) { throw new Exception\InvalidArgumentException(sprintf( 'Invalid content (%s) provided to %s', (is_object($text) ? get_class($text) : gettype($text)), __CLASS__ )); } $body = new Stream('php://temp', 'wb+'); $body->write($text); $body->rewind(); return $body; } }