src/Security/Voter/Patient/RemoveVoter.php line 8

  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Security\Voter\Patient;
  4. class RemoveVoter extends HasRoleForPatientVoter
  5. {
  6.     protected function getRequiredRole(): string
  7.     {
  8.         return 'OFFICE_PATIENT_REMOVE';
  9.     }
  10. }