Files
faveo/vendor/psr/http-factory/src/UriFactoryInterface.php
RafficMohammed da241bacb6 updated-packages
2023-01-08 00:13:22 +05:30

18 lines
325 B
PHP

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