Files
pancake/system/vendor/psr/http-factory/src/UriFactoryInterface.php
Tim Bendt 6b9ef7ca55 first
2025-11-25 00:16:35 -05:00

18 lines
325 B
PHP
Executable File

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