Initial commit

This commit is contained in:
Ismo Vuorinen
2022-10-17 09:42:32 +03:00
commit 78cca41be4
27 changed files with 9319 additions and 0 deletions

10
tests/TestCase.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
namespace Tests;
use LaravelZero\Framework\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
}