Files
animethemes-server/tests/CreatesApplication.php
T
2025-07-24 01:22:29 -03:00

27 lines
438 B
PHP

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