OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
email
/
vendor
/
psr
/
http-factory
/
src
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
07/10/2024 05:22:57 AM
rwxr-xr-x
📄
RequestFactoryInterface.php
517 bytes
07/10/2024 05:22:57 AM
rw-r--r--
📄
ResponseFactoryInterface.php
564 bytes
07/10/2024 05:22:57 AM
rw-r--r--
📄
ServerRequestFactoryInterface.php
951 bytes
07/10/2024 05:22:57 AM
rw-r--r--
📄
StreamFactoryInterface.php
1.43 KB
07/10/2024 05:22:57 AM
rw-r--r--
📄
UploadedFileFactoryInterface.php
1.13 KB
07/10/2024 05:22:57 AM
rw-r--r--
📄
UriFactoryInterface.php
342 bytes
07/10/2024 05:22:57 AM
rw-r--r--
Editing: ServerRequestFactoryInterface.php
Close
<?php namespace Psr\Http\Message; interface ServerRequestFactoryInterface { /** * Create a new server request. * * Note that server-params are taken precisely as given - no parsing/processing * of the given values is performed, and, in particular, no attempt is made to * determine the HTTP method or URI, which must be provided explicitly. * * @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. * @param array $serverParams Array of SAPI parameters with which to seed * the generated request instance. * * @return ServerRequestInterface */ public function createServerRequest(string $method, $uri, array $serverParams = []): ServerRequestInterface; }