Agregando el backend de lumen

This commit is contained in:
2021-04-20 17:06:51 -04:00
parent cf875c8fdc
commit 99dd982041
43 changed files with 8416 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
use Laravel\Lumen\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
/**
* Creates the application.
*
* @return \Laravel\Lumen\Application
*/
public function createApplication()
{
return require __DIR__.'/../bootstrap/app.php';
}
}