Current File : //var/www/vinorea/modules/ps_mbo/vendor/http-interop/http-factory-guzzle/src/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);
    }
}