src/Security/Voter/Employee/ListVoter.php line 10

  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Security\Voter\Employee;
  4. use App\Security\Voter\HasRoleForOfficeVoter;
  5. class ListVoter extends HasRoleForOfficeVoter
  6. {
  7.     protected function getRequiredRole(): string
  8.     {
  9.         return 'OFFICE_EMPLOYEE_LIST';
  10.     }
  11. }