Files
luckywheel/vendor/psr/http-factory/src/UriFactoryInterface.php
2026-01-08 10:44:51 +07:00

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