Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Releasing scope constraint #176

Merged
merged 2 commits into from Jan 4, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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