Initial laravel app

This commit is contained in:
Ben Ramey
2017-10-31 21:09:13 -05:00
commit 1eb5272b75
80 changed files with 13508 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;
}