| Current Path : /var/www/html/encuesta.sumar.com.py/tests/ |
| Current File : /var/www/html/encuesta.sumar.com.py/tests/CreatesApplication.php |
<?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;
}
}