Files
cattr/tests/CreatesApplication.php
Noor E Ilahi 7ccf44f7da first commit
2026-01-09 12:54:53 +05:30

22 lines
399 B
PHP

<?php
namespace Tests;
use Illuminate\Contracts\Console\Kernel;
use Illuminate\Foundation\Application;
use Settings;
trait CreatesApplication
{
public function createApplication(): Application
{
$app = require __DIR__.'/../bootstrap/app.php';
$app->make(Kernel::class)->bootstrap();
Settings::scope('core')->set('installed', true);
return $app;
}
}