Skip to content

Commit 4439c10

Browse files
committed
fix(security): allow multiple Security attributes when applicable
1 parent e532750 commit 4439c10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Security/Core/Authorization/TraceableAccessDecisionManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function decide(TokenInterface $token, array $attributes, mixed $object =
5454
$this->accessDecisionStack[] = $accessDecision;
5555

5656
try {
57-
return $accessDecision->isGranted = $this->manager->decide($token, $attributes, $object, $accessDecision);
57+
return $accessDecision->isGranted = $this->manager->decide($token, $attributes, $object, $accessDecision, $allowMultipleAttributes);
5858
} finally {
5959
$this->strategy = $accessDecision->strategy;
6060
$currentLog = array_pop($this->currentLog);

0 commit comments

Comments
 (0)