1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2024-11-24 20:02:35 +01:00
BookStack/tests/CreatesApplication.php

22 lines
381 B
PHP
Raw Normal View History

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