Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
<?php
2
 
3
/**
4
 * Slim Framework (https://slimframework.com)
5
 *
6
 * @license https://github.com/slimphp/Slim/blob/4.x/LICENSE.md (MIT License)
7
 */
8
 
9
declare(strict_types=1);
10
 
11
namespace Slim\Factory\Psr17;
12
 
13
class GuzzlePsr17Factory extends Psr17Factory
14
{
15
    protected static string $responseFactoryClass = 'GuzzleHttp\Psr7\HttpFactory';
16
    protected static string $streamFactoryClass = 'GuzzleHttp\Psr7\HttpFactory';
17
    protected static string $serverRequestCreatorClass = 'GuzzleHttp\Psr7\ServerRequest';
18
    protected static string $serverRequestCreatorMethod = 'fromGlobals';
19
}