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