2FAuth/public/index.php

56 lines
1.7 KiB
PHP
Raw Normal View History

2019-05-20 07:37:41 +02:00
<?php
2021-12-02 13:15:53 +01:00
use Illuminate\Contracts\Http\Kernel;
use Illuminate\Http\Request;
2019-05-20 07:37:41 +02:00
define('LARAVEL_START', microtime(true));
2021-12-02 13:15:53 +01:00
/*
|--------------------------------------------------------------------------
| Check If The Application Is Under Maintenance
|--------------------------------------------------------------------------
|
| If the application is in maintenance / demo mode via the "down" command
| we will load this file so that any pre-rendered content can be shown
| instead of starting the framework, which could cause an exception.
|
*/
2022-11-14 17:10:47 +01:00
if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
require $maintenance;
2021-12-02 13:15:53 +01:00
}
2019-05-20 07:37:41 +02:00
/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader for
2022-11-14 17:10:47 +01:00
| this application. We just need to utilize it! We'll simply require it
| into the script here so we don't need to manually load our classes.
2019-05-20 07:37:41 +02:00
|
*/
require __DIR__.'/../vendor/autoload.php';
/*
|--------------------------------------------------------------------------
2022-11-14 17:10:47 +01:00
| Run The Application
2019-05-20 07:37:41 +02:00
|--------------------------------------------------------------------------
|
2022-11-14 17:10:47 +01:00
| Once we have the application, we can handle the incoming request using
| the application's HTTP kernel. Then, we will send the response back
| to this client's browser, allowing them to enjoy our application.
2019-05-20 07:37:41 +02:00
|
*/
$app = require_once __DIR__.'/../bootstrap/app.php';
2021-12-02 13:15:53 +01:00
$kernel = $app->make(Kernel::class);
2019-05-20 07:37:41 +02:00
$response = $kernel->handle(
2021-12-02 13:15:53 +01:00
$request = Request::capture()
)->send();
2019-05-20 07:37:41 +02:00
2022-11-14 17:10:47 +01:00
$kernel->terminate($request, $response);