Skip to content

Commit

Permalink
Fix config
Browse files Browse the repository at this point in the history
  • Loading branch information
UserFrosting committed Dec 10, 2024
1 parent a764499 commit 8e12d20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/Authorize/AccessConditionEvaluator.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8e12d20

Please sign in to comment.