D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
psa
/
admin
/
plib
/
vendor
/
slim
/
slim
/
Slim
/
Factory
/
Psr17
/
Filename :
HttpSoftPsr17Factory.php
back
Copy
<?php /** * Slim Framework (https://slimframework.com) * * @license https://github.com/slimphp/Slim/blob/4.x/LICENSE.md (MIT License) */ declare(strict_types=1); namespace Slim\Factory\Psr17; class HttpSoftPsr17Factory extends Psr17Factory { protected static string $responseFactoryClass = 'HttpSoft\Message\ResponseFactory'; protected static string $streamFactoryClass = 'HttpSoft\Message\StreamFactory'; protected static string $serverRequestCreatorClass = 'HttpSoft\ServerRequest\ServerRequestCreator'; protected static string $serverRequestCreatorMethod = 'createFromGlobals'; }