feat: adds laravel stubs

This commit is contained in:
Nuno Maduro
2023-03-17 10:28:50 +00:00
parent 050fe38a90
commit 26cf278103
5 changed files with 101 additions and 0 deletions

View File

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