/home/mip/mip/public/img/credit/datatables/UriFactoryInterface.php.tar
home/mip/mip/vendor/psr/http-factory/src/UriFactoryInterface.php000064400000000505151520661470021012 0ustar00<?php

namespace Psr\Http\Message;

interface UriFactoryInterface
{
    /**
     * Create a new URI.
     *
     * @param string $uri
     *
     * @return UriInterface
     *
     * @throws \InvalidArgumentException If the given URI cannot be parsed.
     */
    public function createUri(string $uri = ''): UriInterface;
}