From cb2dbd9299e1cfd5ca7a7b4e3fa961c5b0821618 Mon Sep 17 00:00:00 2001 From: myrmidex Date: Wed, 19 Aug 2026 13:40:43 +0200 Subject: [PATCH] 54 - Fix Pint import issues in tests/Pest.php --- tests/Pest.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/Pest.php b/tests/Pest.php index 21631d2..7963c18 100644 --- a/tests/Pest.php +++ b/tests/Pest.php @@ -3,6 +3,7 @@ use App\Models\Planner; use Illuminate\Foundation\Testing\RefreshDatabase; use Illuminate\Support\Facades\Hash; +use Pest\Browser\Api\Webpage; use Tests\BrowserTestCase; use Tests\TestCase; @@ -26,7 +27,7 @@ function createPlanner(?string $email = null): Planner /** * Log in as the given planner and navigate to the target page. * - * @return \Pest\Browser\Api\Webpage + * @return Webpage */ function loginAs(Planner $planner, string $page = '/dashboard') { @@ -39,7 +40,7 @@ function loginAs(Planner $planner, string $page = '/dashboard') } /** - * @return \Pest\Browser\Api\Webpage + * @return Webpage */ function loginAndGoToDishes() { @@ -47,7 +48,7 @@ function loginAndGoToDishes() } /** - * @return \Pest\Browser\Api\Webpage + * @return Webpage */ function loginAndGoToUsers() { @@ -55,7 +56,7 @@ function loginAndGoToUsers() } /** - * @return \Pest\Browser\Api\Webpage + * @return Webpage */ function loginAndGoToSchedule() {