Files
app
bootstrap
config
database
public
resources
routes
storage
tests
Feature
Unit
CreatesApplication.php
TestCase.php
.env.example
.gitattributes
.gitignore
README.md
artisan
composer.json
composer.lock
package.json
phpunit.xml
server.php
webpack.mix.js
yarn.lock
web/tests/CreatesApplication.php
2017-11-12 15:09:38 +01: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;
}
}