mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-11-03 02:13:16 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Oxbow\Http;
 | 
						|
 | 
						|
use Illuminate\Foundation\Http\Kernel as HttpKernel;
 | 
						|
 | 
						|
class Kernel extends HttpKernel
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * The application's global HTTP middleware stack.
 | 
						|
     *
 | 
						|
     * @var array
 | 
						|
     */
 | 
						|
    protected $middleware = [
 | 
						|
        \Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode::class,
 | 
						|
        \Oxbow\Http\Middleware\EncryptCookies::class,
 | 
						|
        \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
 | 
						|
        \Illuminate\Session\Middleware\StartSession::class,
 | 
						|
        \Illuminate\View\Middleware\ShareErrorsFromSession::class,
 | 
						|
        \Oxbow\Http\Middleware\VerifyCsrfToken::class,
 | 
						|
    ];
 | 
						|
 | 
						|
    /**
 | 
						|
     * The application's route middleware.
 | 
						|
     *
 | 
						|
     * @var array
 | 
						|
     */
 | 
						|
    protected $routeMiddleware = [
 | 
						|
        'auth'       => \Oxbow\Http\Middleware\Authenticate::class,
 | 
						|
        'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
 | 
						|
        'guest'      => \Oxbow\Http\Middleware\RedirectIfAuthenticated::class,
 | 
						|
        'perm'       => \Oxbow\Http\Middleware\PermissionMiddleware::class
 | 
						|
    ];
 | 
						|
}
 |