File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 26
26
class ExceptionListener implements SentryExceptionListenerInterface
27
27
{
28
28
/** @var TokenStorageInterface|null */
29
- private $ tokenStorage ;
29
+ protected $ tokenStorage ;
30
30
31
31
/** @var AuthorizationCheckerInterface|null */
32
- private $ authorizationChecker ;
32
+ protected $ authorizationChecker ;
33
33
34
34
/** @var \Raven_Client */
35
35
protected $ client ;
@@ -38,7 +38,7 @@ class ExceptionListener implements SentryExceptionListenerInterface
38
38
protected $ eventDispatcher ;
39
39
40
40
/** @var RequestStack */
41
- private $ requestStack ;
41
+ protected $ requestStack ;
42
42
43
43
/** @var string[] */
44
44
protected $ skipCapture ;
@@ -147,7 +147,7 @@ public function onConsoleException(ConsoleExceptionEvent $event): void
147
147
/**
148
148
* @param ConsoleExceptionEvent|ConsoleErrorEvent $event
149
149
*/
150
- private function handleConsoleError (ConsoleEvent $ event ): void
150
+ protected function handleConsoleError (ConsoleEvent $ event ): void
151
151
{
152
152
$ command = $ event ->getCommand ();
153
153
switch (true ) {
@@ -190,7 +190,7 @@ protected function shouldExceptionCaptureBeSkipped(\Throwable $exception): bool
190
190
/**
191
191
* @param UserInterface | object | string $user
192
192
*/
193
- private function setUserValue ($ user )
193
+ protected function setUserValue ($ user )
194
194
{
195
195
$ data = [];
196
196
You can’t perform that action at this time.
0 commit comments