src/Security/Voter/Appointment/ListVoter.php line 10
<?php
declare(strict_types=1);
namespace App\Security\Voter\Appointment;
use App\Security\Voter\HasRoleForOfficeVoter;
class ListVoter extends HasRoleForOfficeVoter
{
protected function getRequiredRole(): string
{
return 'OFFICE_APPOINTMENT_LIST';
}
}