php-content/tests/TestCase.php
Claude 4d66f0b101
Some checks failed
CI / PHP 8.3 (push) Failing after 1m29s
CI / PHP 8.4 (push) Failing after 1m31s
ci: add php-tenant dependency for unit tests
2026-02-23 06:43:13 +00:00

18 lines
328 B
PHP

<?php
declare(strict_types=1);
namespace Tests;
use Orchestra\Testbench\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
protected function getPackageProviders($app): array
{
return [
\Core\Tenant\Boot::class,
\Core\Mod\Content\Boot::class,
];
}
}