LogViewer/code/tests/CreatesApplication.php
splin94@yandex.ru 3a4a328d80 -
2023-11-09 20:51:08 +00:00

23 lines
380 B
PHP
Executable File

<?php
namespace Tests;
use Illuminate\Contracts\Console\Kernel;
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;
}
}