Skip to content

Commit

Permalink
Merge pull request #176 from bouland/patch-1
Browse files Browse the repository at this point in the history
Releasing scope constraint
  • Loading branch information
Jean85 committed Jan 4, 2019
2 parents 0263ae6 + 8543e49 commit 4f4ba5a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 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 Expand Up @@ -147,7 +147,7 @@ public function onConsoleException(ConsoleExceptionEvent $event): void
/**
* @param ConsoleExceptionEvent|ConsoleErrorEvent $event
*/
private function handleConsoleError(ConsoleEvent $event): void
protected function handleConsoleError(ConsoleEvent $event): void
{
$command = $event->getCommand();
switch (true) {
Expand Down Expand Up @@ -190,7 +190,7 @@ protected function shouldExceptionCaptureBeSkipped(\Throwable $exception): bool
/**
* @param UserInterface | object | string $user
*/
private function setUserValue($user)
protected function setUserValue($user)
{
$data = [];

Expand Down

0 comments on commit 4f4ba5a

Please sign in to comment.