zzwy2/vendor/psr/http-factory/src/UriFactoryInterface.php

18 lines
325 B
PHP
Raw Normal View History

2022-10-08 17:31:39 +08:00
<?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;
}