AspireCloud/tests/TestCase.php
2025-10-25 13:15:51 -06:00

11 lines
193 B
PHP

<?php
declare(strict_types=1);
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
protected bool $seed = true;
}