Version 1.0

This commit is contained in:
2021-01-27 11:05:27 +03:00
parent 6a360ae315
commit b1e0b1cf5b
37 changed files with 6791 additions and 0 deletions

16
tests/TestCase.php Normal file
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';
}
}