. */ declare(strict_types=1); namespace Tests; use Illuminate\Contracts\Console\Kernel; /** * Trait CreatesApplication * */ trait CreatesApplication { /** * Creates the application. * * @return \Illuminate\Foundation\Application */ public function createApplication() { $app = require __DIR__ . '/../bootstrap/app.php'; $app->make(Kernel::class)->bootstrap(); return $app; } }