File "UriFactoryInterface.php"

Full path: E:/sites/Single15/tinmung2007/webroot/XAMMP/phpMyAdmin/vendor/psr/http-factory/src/UriFactoryInterface.php
File size: 325 B
MIME-type:
Charset: utf-8

Download   Open   Back

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

PHP File Manager