| 1 | <?php | ||
| 21 | final class FirewallSubscriber implements EventSubscriberInterface | ||
| 22 | { | ||
| 23 | /** | ||
| 24 | * @var FirewallMapInterface | ||
| 25 | */ | ||
| 26 | private $firewallMap; | ||
| 27 | |||
| 28 | /** | ||
| 29 | * @var IRequest | ||
| 30 | */ | ||
| 31 | private $request; | ||
| 32 | |||
| 33 | 3 | public function __construct(FirewallMapInterface $firewallMap, IRequest $request) | |
| 38 | |||
| 39 | 2 | public static function getSubscribedEvents() : array | |
| 45 | |||
| 46 | 2 | public function onPresenter(PresenterCreatedEvent $applicationPresenterEvent) | |
| 54 | } | ||
| 55 |