Skip to content

Commit

Permalink
Exception listerner with protected attributes
Browse files Browse the repository at this point in the history
Issue #175
  • Loading branch information
bouland committed Jan 2, 2019
1 parent 1ba81c4 commit 8543e49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/EventListener/ExceptionListener.php
Expand Up @@ -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;
Expand All @@ -38,7 +38,7 @@ class ExceptionListener implements SentryExceptionListenerInterface
protected $eventDispatcher;

/** @var RequestStack */
private $requestStack;
protected $requestStack;

/** @var string[] */
protected $skipCapture;
Expand Down

0 comments on commit 8543e49

Please sign in to comment.