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