Apply fixes from StyleCI

This commit is contained in:
James Brooks
2019-06-23 08:04:32 +00:00
committed by StyleCI Bot
parent 5c50e3c068
commit be26449a42

View File

@@ -46,18 +46,18 @@ class Kernel extends HttpKernel
* @var array * @var array
*/ */
protected $routeMiddleware = [ protected $routeMiddleware = [
'admin' => Admin::class, 'admin' => Admin::class,
'auth.api' => ApiAuthentication::class, 'auth.api' => ApiAuthentication::class,
'auth.remoteuser' => RemoteUserAuthenticate::class, 'auth.remoteuser' => RemoteUserAuthenticate::class,
'auth' => Authenticate::class, 'auth' => Authenticate::class,
'cache' => CacheControl::class, 'cache' => CacheControl::class,
'can' => Authorize::class, 'can' => Authorize::class,
'cors' => HandleCors::class, 'cors' => HandleCors::class,
'guest' => RedirectIfAuthenticated::class, 'guest' => RedirectIfAuthenticated::class,
'localize' => Localize::class, 'localize' => Localize::class,
'ready' => ReadyForUse::class, 'ready' => ReadyForUse::class,
'setup' => SetupAlreadyCompleted::class, 'setup' => SetupAlreadyCompleted::class,
'subscribers' => SubscribersConfigured::class, 'subscribers' => SubscribersConfigured::class,
'throttle' => Throttler::class, 'throttle' => Throttler::class,
]; ];
} }