php-content/tests/TestCase.php
Claude bd4837a46d
Some checks failed
CI / PHP 8.3 (push) Failing after 1m50s
CI / PHP 8.4 (push) Failing after 1m35s
test: fix TestCase to use Orchestra Testbench for CI
2026-02-23 06:18:30 +00:00

17 lines
290 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\Mod\Content\Boot::class,
];
}
}