Update Kernel.php

This commit is contained in:
Matt Hollis 2018-09-07 16:20:54 -05:00 committed by GitHub
parent b354a35272
commit 0eb1a8f3bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ class Kernel extends HttpKernel
'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class,
];
/**
* The priority-sorted list of middleware.
*
@ -69,7 +69,7 @@ class Kernel extends HttpKernel
*
* @var array
*/
protected $middlewarePriority = [
protected $middlewarePriority = [
\Illuminate\Session\Middleware\StartSession::class,
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
\App\Http\Middleware\Authenticate::class,