Add missing return statement

This commit is contained in:
Julie Lenaerts 2025-05-27 12:43:45 +02:00
parent 74fbd6feac
commit 50b590ae34

View File

@ -65,6 +65,8 @@ class ReportVoter extends AbstractChillVoter implements ProvideRoleHierarchyInte
if ($subject instanceof Center) {
return self::LISTS === $attribute;
}
return false;
}
protected function voteOnAttribute($attribute, $subject, TokenInterface $token): bool