Browse Source

removed comment bloat from index.php.

Taylor Otwell 13 years ago
parent
commit
9624d275a4
1 changed files with 3 additions and 15 deletions
  1. 3 15
      public/index.php

+ 3 - 15
public/index.php

@@ -9,11 +9,6 @@
  * @link     http://laravel.com 
  */
 
-// --------------------------------------------------------------
-// Set the framework starting time.
-// --------------------------------------------------------------
-define('LARAVEL_START', microtime(true));
-
 // --------------------------------------------------------------
 // Define the framework paths.
 // --------------------------------------------------------------
@@ -86,20 +81,13 @@ if (System\Config::get('session.driver') != '')
 // --------------------------------------------------------------
 $response = System\Route\Filter::call('before', array(), true);
 
-// --------------------------------------------------------------
-// Only execute the route function if the "before" filter did
-// not override by sending a response.
-// --------------------------------------------------------------
+// ----------------------------------------------------------
+// Execute the route function.
+// ----------------------------------------------------------
 if (is_null($response))
 {
-	// ----------------------------------------------------------
-	// Route the request to the proper route.
-	// ----------------------------------------------------------
 	$route = System\Router::route(Request::method(), Request::uri());
 
-	// ----------------------------------------------------------
-	// Execute the route function.
-	// ----------------------------------------------------------
 	if ( ! is_null($route))
 	{
 		$response = $route->call();