This commit is contained in:
Dennis Eichhorn 2017-11-09 17:18:39 +01:00
parent d3fce2feb4
commit 7d2f8a3283
2 changed files with 12 additions and 15 deletions

View File

@ -193,11 +193,7 @@ class Http implements UriInterface
} }
/** /**
* Get root path. * {@inheritdoc}
*
* @return string
*
* @since 1.0.0
*/ */
public function getRootPath() : string public function getRootPath() : string
{ {
@ -238,11 +234,7 @@ class Http implements UriInterface
} }
/** /**
* Get password. * {@inheritdoc}
*
* @return string
*
* @since 1.0.0
*/ */
public function getPass() : string public function getPass() : string
{ {
@ -349,11 +341,7 @@ class Http implements UriInterface
} }
/** /**
* Get user. * {@inheritdoc}
*
* @return string
*
* @since 1.0.0
*/ */
public function getUser() : string public function getUser() : string
{ {

View File

@ -92,6 +92,15 @@ interface UriInterface
*/ */
public function getPath() : string; public function getPath() : string;
/**
* Get root path.
*
* @return string
*
* @since 1.0.0
*/
public function getRootPath() : string;
/** /**
* Get path element. * Get path element.
* *