Current File : /var/www/vinorea/modules/ps_mbo/vendor/http-interop/http-factory-guzzle/src/UriFactory.php
<?php

namespace Http\Factory\Guzzle;

use GuzzleHttp\Psr7\Uri;
use Psr\Http\Message\UriFactoryInterface;
use Psr\Http\Message\UriInterface;

class UriFactory implements UriFactoryInterface
{
    public function createUri(string $uri = ''): UriInterface
    {
        return new Uri($uri);
    }
}