| Total Complexity | 3 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | class RemoteClaimSubscriber implements EventSubscriberInterface, LoggerAwareInterface |
||
| 21 | { |
||
| 22 | use LoggerAwareTrait; |
||
| 23 | |||
| 24 | /** @var RemoteClaimManagerInterface */ |
||
| 25 | private $remoteClaimManager; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * AuthorizationSubscriber constructor. |
||
| 29 | * @param RemoteClaimManagerInterface $remoteClaimManager |
||
| 30 | */ |
||
| 31 | public function __construct(RemoteClaimManagerInterface $remoteClaimManager) |
||
| 32 | { |
||
| 33 | $this->remoteClaimManager = $remoteClaimManager; |
||
| 34 | } |
||
| 35 | |||
| 36 | public static function getSubscribedEvents() |
||
| 40 | ]; |
||
| 41 | } |
||
| 42 | |||
| 43 | public function onRemoteClaimUriUpdate(UpdateRemoteClaimUriEvent $event) |
||
| 48 |