OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
oauth
/
vendor
/
psr
/
http-factory
/
src
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
09/30/2021 11:53:09 AM
rwxr-xr-x
📄
RequestFactoryInterface.php
499 bytes
09/30/2021 11:53:51 AM
rw-r--r--
📄
ResponseFactoryInterface.php
546 bytes
09/30/2021 11:53:49 AM
rw-r--r--
📄
ServerRequestFactoryInterface.php
927 bytes
09/30/2021 11:53:51 AM
rw-r--r--
📄
StreamFactoryInterface.php
1.38 KB
09/30/2021 11:53:49 AM
rw-r--r--
📄
UploadedFileFactoryInterface.php
1.08 KB
09/30/2021 11:53:50 AM
rw-r--r--
📄
UriFactoryInterface.php
325 bytes
09/30/2021 11:53:50 AM
rw-r--r--
Editing: UriFactoryInterface.php
Close
<?php namespace Psr\Http\Message; interface UriFactoryInterface { /** * Create a new URI. * * @param string $uri * * @return UriInterface * * @throws \InvalidArgumentException If the given URI cannot be parsed. */ public function createUri(string $uri = ''): UriInterface; }