diff --git a/app/src/Authorize/AccessConditionEvaluator.php b/app/src/Authorize/AccessConditionEvaluator.php index d47b5ad..43ccb9b 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;