diff --git a/Uri/UriInterface.php b/Uri/UriInterface.php index ec4cc0b6b..db57a1e79 100644 --- a/Uri/UriInterface.php +++ b/Uri/UriInterface.php @@ -92,6 +92,24 @@ interface UriInterface */ public function getPath() : string; + /** + * Get user. + * + * @return string + * + * @since 1.0.0 + */ + public function getUser() : string; + + /** + * Get password. + * + * @return string + * + * @since 1.0.0 + */ + public function getPass() : string; + /** * Get root path. * @@ -132,6 +150,15 @@ interface UriInterface */ public function getQuery(string $key = null) : string; + /** + * Get query array. + * + * @return array + * + * @since 1.0.0 + */ + public function getQueryArray() : array; + /** * Get fragment. *