<?php
declare(strict_types=1);
namespace App\Security\Voter\Patient;
class EditVoter extends HasRoleForPatientVoter
{
protected function getRequiredRole(): string
return 'OFFICE_PATIENT_EDIT';
}