Extra debug info for #2159 and some kernel changes.

This commit is contained in:
James Cole
2019-03-16 21:54:25 +01:00
parent e2ebd01719
commit f6f21e02ac
3 changed files with 18 additions and 1 deletions

View File

@@ -184,7 +184,21 @@ class Kernel extends HttpKernel
'bindings',
],
];
/**
* The priority-sorted list of middleware.
*
* This forces non-global middleware to always be in the given order.
*
* @var array
*/
protected $middlewarePriority
= [
StartFireflySession::class,
ShareErrorsFromSession::class,
Authenticate::class,
Binder::class,
Authorize::class,
];
/**
* The application's route middleware.
*