From 266686cee643e0f28c7d61a74bfaef83c2d6b2d8 Mon Sep 17 00:00:00 2001 From: Rafael Dohms Date: Wed, 5 Oct 2016 11:31:43 +0200 Subject: [PATCH] Made client available to extensions Made client protected so extensions of the helper can use it. --- src/Sentry/SentryBundle/EventListener/ExceptionListener.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Sentry/SentryBundle/EventListener/ExceptionListener.php b/src/Sentry/SentryBundle/EventListener/ExceptionListener.php index c909c751..f875c205 100644 --- a/src/Sentry/SentryBundle/EventListener/ExceptionListener.php +++ b/src/Sentry/SentryBundle/EventListener/ExceptionListener.php @@ -26,10 +26,10 @@ class ExceptionListener private $authorizationChecker; /** @var \Raven_Client */ - private $client; + protected $client; /** @var string[] */ - private $skipCapture; + protected $skipCapture; /** * ExceptionListener constructor.