Commit 06886b73 authored by Melvin Lammerts's avatar Melvin Lammerts

Removed unnecessary 'else' statement

parent ba0cf2a1
...@@ -41,11 +41,8 @@ Route::filter('auth', function() ...@@ -41,11 +41,8 @@ Route::filter('auth', function()
{ {
return Response::make('Unauthorized', 401); return Response::make('Unauthorized', 401);
} }
else
{
return Redirect::guest('login'); return Redirect::guest('login');
} }
}
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment