5 use Illuminate\Contracts\Console\Kernel;
7 trait CreatesApplication
10 * Creates the application.
12 * @return \Illuminate\Foundation\Application
14 public function createApplication()
16 $app = require __DIR__ . '/../bootstrap/app.php';
17 $app->make(Kernel::class)->bootstrap();