Update RouteServiceProvider.php

Removed the CSRF provider as it is specified in the Kernel.
This commit is contained in:
Nathaniel Blackburn 2014-10-28 19:06:26 +00:00
parent 68009bb99c
commit 08c6996d77
1 changed files with 0 additions and 1 deletions

View File

@ -24,7 +24,6 @@ class RouteServiceProvider extends ServiceProvider {
protected $middleware = [
'auth' => 'App\Http\Middleware\Authenticated',
'auth.basic' => 'App\Http\Middleware\AuthenticatedWithBasicAuth',
'csrf' => 'App\Http\Middleware\VerifyCsrfToken',
'guest' => 'App\Http\Middleware\IsGuest',
];