mirror of
https://gitlab.com/izyim/prototypes/lumen-microservices/microservice-api-gateway.git
synced 2026-08-19 04:24:15 +00:00
15 lines
279 B
PHP
15 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';
|
|
}
|
|
}
|