lthn.io/bootstrap/app.php

19 lines
475 B
PHP
Raw Permalink Normal View History

<?php
declare(strict_types=1);
/*
|--------------------------------------------------------------------------
| Create The Application
|--------------------------------------------------------------------------
|
| Bridge for Laravel Octane / FrankenPHP worker mode.
| Octane expects bootstrap/app.php to return the Application instance.
| Our app bootstraps via App\Boot::app() (core-php pattern).
|
*/
require __DIR__.'/../vendor/autoload.php';
return App\Boot::app();