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