lumenInit/tests/TestCase.php
2019-09-20 10:57:54 +02:00

14 lines
279 B
PHP

<?php
abstract class TestCase extends Laravel\Lumen\Testing\TestCase
{
/**
* Creates the application.
*
* @return \Laravel\Lumen\Application
*/
public function createApplication()
{
return require __DIR__.'/../bootstrap/app.php';
}
}