for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace MinepicTests;
use Laravel\Lumen\Testing\TestCase as LumenTestCase;
abstract class TestCase extends LumenTestCase
{
/**
* Creates the application.
*
* @return \Laravel\Lumen\Application
*/
public function createApplication()
return require __DIR__.'/../bootstrap/app.php';
}