nooktheme/tests/CreatesApplication.php
mowetentertainment1 eb5b65cec6 initial commit
2025-11-01 19:45:11 -04:00

22 lines
389 B
PHP

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