OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
Xpress_backup
/
vendor
/
psr
/
http-factory
/
src
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
01/06/2025 08:13:18 AM
rwxr-xr-x
📄
RequestFactoryInterface.php
517 bytes
05/19/2025 10:07:18 AM
rw-r--r--
📄
ResponseFactoryInterface.php
564 bytes
05/19/2025 10:07:18 AM
rw-r--r--
📄
ServerRequestFactoryInterface.php
951 bytes
05/19/2025 10:07:18 AM
rw-r--r--
📄
StreamFactoryInterface.php
1.43 KB
05/19/2025 10:07:18 AM
rw-r--r--
📄
UploadedFileFactoryInterface.php
1.13 KB
05/19/2025 10:07:18 AM
rw-r--r--
📄
UriFactoryInterface.php
342 bytes
05/19/2025 10:07:18 AM
rw-r--r--
Editing: RequestFactoryInterface.php
Close
<?php namespace Psr\Http\Message; interface RequestFactoryInterface { /** * Create a new request. * * @param string $method The HTTP method associated with the request. * @param UriInterface|string $uri The URI associated with the request. If * the value is a string, the factory MUST create a UriInterface * instance based on it. * * @return RequestInterface */ public function createRequest(string $method, $uri): RequestInterface; }