src/Security/Voter/Appointment/ViewVoter.php line 8
<?php
declare(strict_types=1);
namespace App\Security\Voter\Appointment;
class ViewVoter extends HasRoleForAppointmentVoter
{
protected function getRequiredRole(): string
{
return 'OFFICE_APPOINTMENT_VIEW';
}
}