Move imports to the top

This commit is contained in:
brufdev
2025-01-28 14:41:40 +00:00
parent 2c78649610
commit 7c66136dc3

View File

@@ -2,6 +2,9 @@
declare(strict_types=1);
use Tests\TestCase;
use Illuminate\Foundation\Testing\RefreshDatabase;
/*
|--------------------------------------------------------------------------
| Test Case
@@ -13,8 +16,8 @@ declare(strict_types=1);
|
*/
pest()->extend(Tests\TestCase::class)
->use(Illuminate\Foundation\Testing\RefreshDatabase::class)
pest()->extend(TestCase::class)
->use(RefreshDatabase::class)
->beforeEach(function (): void {
$this->freezeTime();
})