11 lines
163 B
PHP
Raw Permalink Normal View History

2022-09-08 15:06:44 -04:00
<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
}