?? 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: 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);
    }
}


??

??