Added declare(strict_types=1) to 27 files that were missing it. Ran Pint to fix PSR-12 issues (import ordering, operator spacing, brace positioning) across 33 files. Co-Authored-By: Virgil <virgil@lethean.io>
18 lines
294 B
PHP
18 lines
294 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests;
|
|
|
|
use Core\Tenant\Boot;
|
|
use Orchestra\Testbench\TestCase as BaseTestCase;
|
|
|
|
abstract class TestCase extends BaseTestCase
|
|
{
|
|
protected function getPackageProviders($app): array
|
|
{
|
|
return [
|
|
Boot::class,
|
|
];
|
|
}
|
|
}
|