Browse Source

remove some comment bloat from the request class.

Taylor Otwell 13 years ago
parent
commit
0586bbe04e
1 changed files with 0 additions and 3 deletions
  1. 0 3
      laravel/request.php

+ 0 - 3
laravel/request.php

@@ -51,9 +51,6 @@ class Request {
 			$uri = substr($uri, strlen($index));
 		}
 
-		// If all we are left with is an empty string, we will return a single forward
-		// slash indicating the request is to the root of the application. If we have
-		// something left, we will its remove the leading and trailing slashes.
 		return static::$uri = (($uri = trim($uri, '/')) !== '') ? $uri : '/';
 	}