Files
api-extranetwork/tests/TestCase.php
ExtraNetwork e5c4b6aa13 first commit
2026-05-12 17:04:54 +03:00

15 lines
293 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';
}
}