mirror of
https://github.com/ZorgCC/lumen-generators.git
synced 2024-12-29 07:15:28 +03:00
15 lines
270 B
PHP
15 lines
270 B
PHP
|
<?php
|
||
|
|
||
|
class TestCase extends Laravel\Lumen\Testing\TestCase
|
||
|
{
|
||
|
/**
|
||
|
* Creates the application.
|
||
|
*
|
||
|
* @return \Laravel\Lumen\Application
|
||
|
*/
|
||
|
public function createApplication()
|
||
|
{
|
||
|
return require __DIR__.'/../bootstrap/app.php';
|
||
|
}
|
||
|
}
|