scan.fyi/tests/TestCase.php
2026-02-22 17:49:23 +00:00

12 lines
249 B
PHP
Executable file

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