add trait

This commit is contained in:
Taylor Otwell
2016-12-05 12:58:44 -06:00
parent b64d1e3dc8
commit ba5bde7c91
2 changed files with 23 additions and 21 deletions

View File

@@ -0,0 +1,22 @@
<?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;
}
}