| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- namespace App\Http;
- use Illuminate\Foundation\Http\Kernel as HttpKernel;
- class Kernel extends HttpKernel
- {
- /**
- * The application's global HTTP middleware stack.
- *
- * @var array<int, class-string|string>
- */
- protected $middleware = [
- // ... existing code ...
- ];
- /**
- * The application's route middleware groups.
- *
- * @var array<string, array<int, class-string|string>>
- */
- protected $middlewareGroups = [
- 'web' => [
- // ... existing code ...
- ],
- 'api' => [
- // ... existing code ...
- ],
- ];
- /**
- * The application's middleware aliases.
- *
- * @var array<string, class-string|string>
- */
- protected $middlewareAliases = [
- // ... existing code ...
- ];
- /**
- * The bootstrap classes for the application.
- *
- * @var array
- */
- protected $bootstrappers = [
- \Illuminate\Foundation\Bootstrap\LoadEnvironmentVariables::class,
- \Illuminate\Foundation\Bootstrap\LoadConfiguration::class,
- \Illuminate\Foundation\Bootstrap\HandleExceptions::class,
- \Illuminate\Foundation\Bootstrap\RegisterFacades::class,
- \Illuminate\Foundation\Bootstrap\RegisterProviders::class,
- \Illuminate\Foundation\Bootstrap\BootProviders::class
- ];
- /**
- * The application's route middleware.
- *
- * These middleware may be assigned to groups or used individually.
- *
- * @var array<string, class-string|string>
- */
- protected $routeMiddleware = [
- // ... existing middleware ...
- ];
- }
|