for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Alive2212\ArrayHelperTest\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;
}