initial commit

This commit is contained in:
dbrw
2017-11-13 10:20:01 +07:00
commit e1eef8de37
88 changed files with 14349 additions and 0 deletions

10
tests/TestCase.php Normal file
View File

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