Skip to content

Commit 8543e49

Browse files
authored
Exception listerner with protected attributes
Issue #175
1 parent 1ba81c4 commit 8543e49

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/EventListener/ExceptionListener.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
class ExceptionListener implements SentryExceptionListenerInterface
2727
{
2828
/** @var TokenStorageInterface|null */
29-
private $tokenStorage;
29+
protected $tokenStorage;
3030

3131
/** @var AuthorizationCheckerInterface|null */
32-
private $authorizationChecker;
32+
protected $authorizationChecker;
3333

3434
/** @var \Raven_Client */
3535
protected $client;
@@ -38,7 +38,7 @@ class ExceptionListener implements SentryExceptionListenerInterface
3838
protected $eventDispatcher;
3939

4040
/** @var RequestStack */
41-
private $requestStack;
41+
protected $requestStack;
4242

4343
/** @var string[] */
4444
protected $skipCapture;

0 commit comments

Comments
 (0)