Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
cpguard /
app /
vendor /
psr /
http-factory /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
RequestFactoryInterface.php
499
B
-rw-r--r--
2025-05-10 05:15
ResponseFactoryInterface.php
546
B
-rw-r--r--
2025-05-10 05:15
ServerRequestFactoryInterface.php
927
B
-rw-r--r--
2025-05-10 05:15
StreamFactoryInterface.php
1.38
KB
-rw-r--r--
2025-05-10 05:15
UploadedFileFactoryInterface.php
1.1
KB
-rw-r--r--
2025-05-10 05:15
UriFactoryInterface.php
325
B
-rw-r--r--
2025-05-10 05:15
Save
Rename
<?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; }