mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-01-18 13:28:15 +00:00
18 lines
325 B
PHP
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;
|
|
}
|