From 8543e499e4e0696d9e3a83a129010fd42ce4b2f7 Mon Sep 17 00:00:00 2001 From: Simon Bouland Date: Wed, 2 Jan 2019 15:48:34 +0100 Subject: [PATCH] Exception listerner with protected attributes Issue #175 --- src/EventListener/ExceptionListener.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/EventListener/ExceptionListener.php b/src/EventListener/ExceptionListener.php index 8d3213ba..aaf69586 100644 --- a/src/EventListener/ExceptionListener.php +++ b/src/EventListener/ExceptionListener.php @@ -26,10 +26,10 @@ class ExceptionListener implements SentryExceptionListenerInterface { /** @var TokenStorageInterface|null */ - private $tokenStorage; + protected $tokenStorage; /** @var AuthorizationCheckerInterface|null */ - private $authorizationChecker; + protected $authorizationChecker; /** @var \Raven_Client */ protected $client; @@ -38,7 +38,7 @@ class ExceptionListener implements SentryExceptionListenerInterface protected $eventDispatcher; /** @var RequestStack */ - private $requestStack; + protected $requestStack; /** @var string[] */ protected $skipCapture;