team_directory/tests/TestCase.php
2023-05-25 15:04:43 -04:00

11 lines
163 B
PHP
Executable file

<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
}