Remove middleware interface.

This commit is contained in:
Taylor Otwell 2015-01-05 13:16:21 -06:00
parent df6fa97d70
commit caa166f5d6
2 changed files with 2 additions and 4 deletions

View File

@ -2,9 +2,8 @@
use Closure; use Closure;
use Illuminate\Contracts\Auth\Guard; use Illuminate\Contracts\Auth\Guard;
use Illuminate\Contracts\Routing\Middleware;
class Authenticate implements Middleware { class Authenticate {
/** /**
* The Guard implementation. * The Guard implementation.

View File

@ -3,9 +3,8 @@
use Closure; use Closure;
use Illuminate\Contracts\Auth\Guard; use Illuminate\Contracts\Auth\Guard;
use Illuminate\Http\RedirectResponse; use Illuminate\Http\RedirectResponse;
use Illuminate\Contracts\Routing\Middleware;
class RedirectIfAuthenticated implements Middleware { class RedirectIfAuthenticated {
/** /**
* The Guard implementation. * The Guard implementation.