From 7c66136dc3c5121f8baf01308fe65a51ecaa6938 Mon Sep 17 00:00:00 2001 From: brufdev Date: Tue, 28 Jan 2025 14:41:40 +0000 Subject: [PATCH] Move imports to the top --- tests/Pest.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/Pest.php b/tests/Pest.php index 4d981b3..318b88b 100644 --- a/tests/Pest.php +++ b/tests/Pest.php @@ -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(); })