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