Add interface function setRoot

This commit is contained in:
Dennis Eichhorn 2018-01-16 18:30:32 +01:00
parent 1a9af7179c
commit 05cafa68d1

View File

@ -117,6 +117,17 @@ interface UriInterface
*/
public function getRootPath() : string;
/**
* Set root path.
*
* @param string $uri Uri
*
* @return void
*
* @since 1.0.0
*/
public function setRootPath(string $root) /* : void */;
/**
* Get path element.
*
@ -202,5 +213,5 @@ interface UriInterface
*
* @since 1.0.0
*/
public function set(string $uri);
public function set(string $uri) /* : void */;
}