17 lines
290 B
PHP
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\Agentic\Boot::class,
|
|
];
|
|
}
|
|
}
|