minor add missing loop break

This commit is contained in:
Robin Chalas 2019-11-09 13:08:24 +01:00
parent 758e266f48
commit 040d93d5b5
1 changed files with 1 additions and 0 deletions

View File

@ -72,6 +72,7 @@ class AccessListener implements ListenerInterface
foreach ($attributes as $key => $value) {
if ($this->accessDecisionManager->decide($token, [$key => $value], $request)) {
$granted = true;
break;
}
}