From ac2460e2eaba78395423bfceeb09736b1efa34fc Mon Sep 17 00:00:00 2001 From: Matthew Weier O'Phinney Date: Wed, 18 Mar 2015 09:24:53 -0500 Subject: [PATCH] Sync with php-fig/fig-standards#460 Sync with php-fig/fig-standards#460 and clarify that an empty path should be returned as "/". --- src/UriInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UriInterface.php b/src/UriInterface.php index 9a67725..0ef91b9 100644 --- a/src/UriInterface.php +++ b/src/UriInterface.php @@ -99,7 +99,7 @@ public function getPort(); * Retrieve the path segment of the URI. * * This method MUST return a string; if no path is present it MUST return - * an empty string. + * the string "/". * * @return string The path segment of the URI. */