aboutsummaryrefslogtreecommitdiff
path: root/backyard/php-api/trunk/app/Http/Kernel.php
diff options
context:
space:
mode:
Diffstat (limited to 'backyard/php-api/trunk/app/Http/Kernel.php')
-rw-r--r--backyard/php-api/trunk/app/Http/Kernel.php32
1 files changed, 0 insertions, 32 deletions
diff --git a/backyard/php-api/trunk/app/Http/Kernel.php b/backyard/php-api/trunk/app/Http/Kernel.php
deleted file mode 100644
index 0a2addc..0000000
--- a/backyard/php-api/trunk/app/Http/Kernel.php
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php namespace App\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',
- 'Illuminate\Cookie\Middleware\EncryptCookies',
- 'Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse',
- 'Illuminate\Session\Middleware\StartSession',
- 'Illuminate\View\Middleware\ShareErrorsFromSession',
- 'App\Http\Middleware\VerifyCsrfToken',
- ];
-
- /**
- * The application's route middleware.
- *
- * @var array
- */
- protected $routeMiddleware = [
- 'auth' => 'App\Http\Middleware\Authenticate',
- 'auth.basic' => 'Illuminate\Auth\Middleware\AuthenticateWithBasicAuth',
- 'guest' => 'App\Http\Middleware\RedirectIfAuthenticated',
- ];
-
-}