Browse Source

refactoring the uri class more.

Taylor Otwell 13 years ago
parent
commit
bce571bf26
1 changed files with 4 additions and 4 deletions
  1. 4 4
      laravel/uri.php

+ 4 - 4
laravel/uri.php

@@ -30,6 +30,10 @@ class URI {
 	/**
 	 * Get the request URI for the current request.
 	 *
+	 * If the request is to the root of the application, a single forward slash
+	 * will be returned. Otherwise, the URI will be returned with all leading
+	 * and trailing slashes removed.
+	 *
 	 * @return string
 	 */
 	public function get()
@@ -76,10 +80,6 @@ class URI {
 	/**
 	 * Format the URI for use throughout the framework.
 	 *
-	 * If the request is to the root of the application, a single forward slash
-	 * will be returned. Otherwise, the URI will be returned with all leading
-	 * and trailing slashes removed.
-	 *
 	 * @param  string  $uri
 	 * @return string
 	 */