From feb4f348a3ef5c1d23defad9b0e767da656941e7 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 9 Nov 2017 17:19:17 +0100 Subject: [PATCH] Fix #23 --- Uri/UriInterface.php | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) 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. *