. */ declare(strict_types=1); namespace App\Security\Voter; use App\Entity\UserSystem\Group; use App\Entity\UserSystem\User; class GroupVoter extends ExtendedVoter { /** * Similar to voteOnAttribute, but checking for the anonymous user is already done. * The current user (or the anonymous user) is passed by $user. * * @param string $attribute */ protected function voteOnUser(string $attribute, $subject, User $user): bool { return $this->resolver->inherit($user, 'groups', $attribute) ?? false; } /** * Determines if the attribute and subject are supported by this voter. * * @param string $attribute An attribute * @param mixed $subject The subject to secure, e.g. an object the user wants to access or any other PHP type * * @return bool True if the attribute and subject are supported, false otherwise */ protected function supports(string $attribute, $subject): bool { if (is_a($subject, Group::class, true)) { return $this->resolver->isValidOperation('groups', $attribute); } return false; } }