initial commit

This commit is contained in:
Behzad Babaei
2020-03-28 17:07:00 +04:30
commit 91f96ceecd
43 changed files with 1122 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<?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';
}
}