From 0586bbe04e65384ac12ad06d0f9e1642f59091d4 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sat, 29 Oct 2011 23:20:07 -0500 Subject: [PATCH] remove some comment bloat from the request class. --- laravel/request.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/laravel/request.php b/laravel/request.php index 3b9909d7..d7ce10a3 100644 --- a/laravel/request.php +++ b/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 : '/'; }