Skip to content

Instantly share code, notes, and snippets.

View piwi91's full-sized avatar

Pim Widdershoven piwi91

View GitHub Profile
@cystbear
cystbear / DynamicRoleHierarchy.php
Last active March 6, 2018 14:53
Example of DynamicRoleHierarchy, how to fetch roles stored in DB and use them in regular Symfony2 security component
<?php
namespace Acme\SecurityBundle\Role;
use Symfony\Component\Security\Core\Role\RoleHierarchyInterface;
use Symfony\Component\Security\Core\Role\RoleHierarchy;
use Acme\SecurityBundle\Entity\RoleRepository;
class DynamicRoleHierarchy implements RoleHierarchyInterface