5 use Illuminate\Contracts\Console\Kernel;
6 use Illuminate\Foundation\Application;
8 trait CreatesApplication
11 * Creates the application.
13 public function createApplication(): Application
15 $app = require __DIR__ . '/../bootstrap/app.php';
16 $app->make(Kernel::class)->bootstrap();