update middleware and config

This commit is contained in:
Taylor Otwell
2015-12-03 12:25:38 -06:00
parent 4eb28ba069
commit 8414d45cdc
3 changed files with 61 additions and 74 deletions

View File

@@ -3,28 +3,10 @@
namespace App\Http\Middleware;
use Closure;
use Illuminate\Contracts\Auth\Guard;
use Illuminate\Support\Facades\Auth;
class RedirectIfAuthenticated
{
/**
* The Guard implementation.
*
* @var Guard
*/
protected $auth;
/**
* Create a new filter instance.
*
* @param Guard $auth
* @return void
*/
public function __construct(Guard $auth)
{
$this->auth = $auth;
}
/**
* Handle an incoming request.
*
@@ -34,7 +16,7 @@ class RedirectIfAuthenticated
*/
public function handle($request, Closure $next)
{
if ($this->auth->check()) {
if (Auth::check()) {
return redirect('/home');
}