Last change
on this file since e3d4e0a was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago |
Upload project files
|
-
Property mode
set to
100644
|
File size:
325 bytes
|
Line | |
---|
1 | <?php
|
---|
2 |
|
---|
3 | namespace Psr\Http\Message;
|
---|
4 |
|
---|
5 | interface UriFactoryInterface
|
---|
6 | {
|
---|
7 | /**
|
---|
8 | * Create a new URI.
|
---|
9 | *
|
---|
10 | * @param string $uri
|
---|
11 | *
|
---|
12 | * @return UriInterface
|
---|
13 | *
|
---|
14 | * @throws \InvalidArgumentException If the given URI cannot be parsed.
|
---|
15 | */
|
---|
16 | public function createUri(string $uri = ''): UriInterface;
|
---|
17 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.