Files
hztha.hkpgsow.cn/vendor/psr/http-factory/src/UriFactoryInterface.php
gaofeng 0b165153c6 提交
2026-05-13 10:44:29 +08: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;
}