From 8e12d20566e686355fb23c44d81db17de6d95b24 Mon Sep 17 00:00:00 2001 From: UserFrosting Date: Tue, 10 Dec 2024 02:02:04 +0000 Subject: [PATCH] Fix config --- app/src/Authorize/AccessConditionEvaluator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/Authorize/AccessConditionEvaluator.php b/app/src/Authorize/AccessConditionEvaluator.php index 43ccb9b..d47b5ad 100644 --- a/app/src/Authorize/AccessConditionEvaluator.php +++ b/app/src/Authorize/AccessConditionEvaluator.php @@ -228,7 +228,7 @@ private function resolveParamPath($path) if (is_array($value) && isset($value[$token])) { $value = $value[$token]; continue; - // @phpstan-ignore-next-line Allow variable property for this use + // @phpstan-ignore-next-line Allow variable property for this use } elseif (is_object($value) && isset($value->$token)) { // @phpstan-ignore-next-line Allow variable property for this use $value = $value->$token;