OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
zzXpress
/
vendor
/
psr
/
http-factory
/
src
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/13/2024 01:57:27 PM
rwxr-xr-x
📄
RequestFactoryInterface.php
517 bytes
05/19/2025 10:07:22 AM
rw-r--r--
📄
ResponseFactoryInterface.php
564 bytes
05/19/2025 10:07:22 AM
rw-r--r--
📄
ServerRequestFactoryInterface.php
951 bytes
05/19/2025 10:07:22 AM
rw-r--r--
📄
StreamFactoryInterface.php
1.43 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
UploadedFileFactoryInterface.php
1.13 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
UriFactoryInterface.php
342 bytes
05/19/2025 10:07:22 AM
rw-r--r--
Editing: ResponseFactoryInterface.php
Close
<?php namespace Psr\Http\Message; interface ResponseFactoryInterface { /** * Create a new response. * * @param int $code HTTP status code; defaults to 200 * @param string $reasonPhrase Reason phrase to associate with status code * in generated response; if none is provided implementations MAY use * the defaults as suggested in the HTTP specification. * * @return ResponseInterface */ public function createResponse(int $code = 200, string $reasonPhrase = ''): ResponseInterface; }