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