From 1953455fe0b3d45e04a5593f674543c06be6f718 Mon Sep 17 00:00:00 2001 From: Tim van Dijen Date: Wed, 17 Jan 2024 23:45:31 +0100 Subject: [PATCH] Fix ParamNameMismatch --- tests/Utils/TestableAuthorize.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Utils/TestableAuthorize.php b/tests/Utils/TestableAuthorize.php index ebb9b1b..4b1c1df 100644 --- a/tests/Utils/TestableAuthorize.php +++ b/tests/Utils/TestableAuthorize.php @@ -14,9 +14,9 @@ class TestableAuthorize extends Authorize { /** * Override the redirect behavior since its difficult to test - * @param array $request the state + * @param array $state the state */ - protected function unauthorized(array &$request): void + protected function unauthorized(array &$state): void { $request['NOT_AUTHORIZED'] = true; }