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