?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/schtroumpf.fr/modules/ps_mbo/vendor/http-interop/http-factory-guzzle/src/



?? Go up: /home/webdevt/www/schtroumpf.fr/modules/ps_mbo/vendor/http-interop/http-factory-guzzle

?? Viewing: RequestFactory.php

<?php

namespace Http\Factory\Guzzle;

use GuzzleHttp\Psr7\Request;
use Psr\Http\Message\RequestFactoryInterface;
use Psr\Http\Message\RequestInterface;

class RequestFactory implements RequestFactoryInterface
{
    public function createRequest(string $method, $uri): RequestInterface
    {
        return new Request($method, $uri);
    }
}


??

??