File "CreatesApplication.php"
Full Path: /home/fundopuh/trader.fxex.org/tests/CreatesApplication.php
File size: 380 bytes
MIME-type: text/x-php
Charset: utf-8
<?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;
}
}