Browse Source

removed bloated if statement from front controller.

Taylor Otwell 13 years ago
parent
commit
d95ead812a
1 changed files with 2 additions and 9 deletions
  1. 2 9
      public/index.php

+ 2 - 9
public/index.php

@@ -93,14 +93,7 @@ if (is_null($response))
 {
 	$route = System\Router::route(Request::method(), Request::uri());
 
-	if ( ! is_null($route))
-	{
-		$response = $route->call();	
-	}
-	else
-	{
-		$response = System\Response::make(View::make('error/404'), 404);
-	}
+	$response = (is_null($route)) ? System\Response::make(View::make('error/404'), 404) : $route->call();
 }
 else
 {
@@ -128,4 +121,4 @@ if (System\Config::get('session.driver') != '')
 // --------------------------------------------------------------
 // Send the response to the browser.
 // --------------------------------------------------------------
-$response->send();
+$response->send();