X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/restate/vendor/php-http/message-factory/src
home
/
gfecatvj
/
sites
/
restate
/
vendor
/
php-http
/
message-factory
/
src
/
๐
..
๐
MessageFactory.php
(212 B)
๐
RequestFactory.php
(827 B)
๐
ResponseFactory.php
(920 B)
๐
StreamFactory.php
(559 B)
๐
UriFactory.php
(458 B)
Editing: ResponseFactory.php
<?php namespace Http\Message; use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\StreamInterface; /** * Factory for PSR-7 Response. * * This factory contract can be reused in Message and Server Message factories. * * @author Mรกrk Sรกgi-Kazรกr <mark.sagikazar@gmail.com> */ interface ResponseFactory { /** * Creates a new PSR-7 response. * * @param int $statusCode * @param string|null $reasonPhrase * @param array $headers * @param resource|string|StreamInterface|null $body * @param string $protocolVersion * * @return ResponseInterface */ public function createResponse( $statusCode = 200, $reasonPhrase = null, array $headers = [], $body = null, $protocolVersion = '1.1' ); }
Upload File
Create Folder