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

17 lines
285 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,
];
}
}