TYPO3  7.6
UriInterface.php
Go to the documentation of this file.
1 <?php
2 namespace Psr\Http\Message;
3 
24 interface UriInterface
25 {
40  public function getScheme();
41 
60  public function getAuthority();
61 
77  public function getUserInfo();
78 
90  public function getHost();
91 
107  public function getPort();
108 
134  public function getPath();
135 
156  public function getQuery();
157 
174  public function getFragment();
175 
191  public function withScheme($scheme);
192 
207  public function withUserInfo($user, $password = null);
208 
221  public function withHost($host);
222 
240  public function withPort($port);
241 
264  public function withPath($path);
265 
281  public function withQuery($query);
282 
297  public function withFragment($fragment);
298 
322  public function __toString();
323 }