Removed unnecessary 'else' statement

This commit is contained in:
Melvin Lammerts 2014-11-15 23:55:35 +01:00
parent ba0cf2a1c9
commit 06886b7369
1 changed files with 1 additions and 4 deletions

View File

@ -41,11 +41,8 @@
{
return Response::make('Unauthorized', 401);
}
else
{
return Redirect::guest('login');
}
}
});