lms/vendor/psr/http-factory/src/UriFactoryInterface.php
2025-12-15 12:26:23 +01: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;
}