LogViewer/code-New/tests/CreatesApplication.php
splin94@yandex.ru 72d82f0fe0 -
2023-11-13 14:14:56 +00:00

22 lines
375 B
PHP

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