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