| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class JwtEventSubscriber implements EventSubscriberInterface |
||
| 12 | { |
||
| 13 | private $roleHierarchy; |
||
| 14 | |||
| 15 | public function __construct(RoleHierarchy $roleHierarchy) |
||
| 16 | { |
||
| 17 | $this->roleHierarchy = $roleHierarchy; |
||
| 18 | } |
||
| 19 | |||
| 20 | public static function getSubscribedEvents(): array |
||
| 23 | } |
||
| 24 | |||
| 25 | public function updateTokenRoles(JWTCreatedEvent $event): void |
||
| 34 |