src/Security/Voter/Employee/EditVoter.php line 8
<?php
declare(strict_types=1);
namespace App\Security\Voter\Employee;
class EditVoter extends HasRoleForEmployeeVoter
{
protected function getRequiredRole(): string
{
return 'OFFICE_EMPLOYEE_EDIT';
}
}