AspireCloud/tests/TestCase.php
Chuck Adams e380b0e815
Replace spatie/laravel-data with dshafik/bag (#218)
* deps: add dshafik/bag

* refactor: create Bag equivalents of Data classes

* zap: nuke the ill-conceived PluginProps/ThemeProps

* deps: remove spatie/laravel-data

* fix: comment out ignoreErrors pattern

* tweak: we don't use a baseline
2025-03-31 19:28:42 -06:00

10 lines
168 B
PHP

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