Browse Source

refactoring the filters.

Taylor Otwell 13 years ago
parent
commit
2c108a9188
1 changed files with 3 additions and 12 deletions
  1. 3 12
      application/filters.php

+ 3 - 12
application/filters.php

@@ -50,28 +50,19 @@ return array(
 
 	'after' => function($response)
 	{
-		if (Config::get('session.driver') !== '')
-		{
-			Input::flash();
-		}
+		if (Config::get('session.driver') !== '') Input::flash();
 	},
 
 
 	'auth' => function()
 	{
-		if ( ! Auth::check())
-		{
-			return Redirect::to_login();
-		}
+		if ( ! Auth::check()) return Redirect::to_login();
 	},
 
 
 	'csrf' => function()
 	{
-		if (Input::get('csrf_token') !== Form::raw_token())
-		{
-			return Response::error('500');
-		}
+		if (Input::get('csrf_token') !== Form::raw_token()) return Response::error('500');
 	},
 
 );