Skip to content

Commit

Permalink
Merge pull request #84 from bartosz-foremniak/patch-6
Browse files Browse the repository at this point in the history
shouldExceptionCaptureBeSkipped method visibilty
  • Loading branch information
Jean85 authored Oct 27, 2017
2 parents 986a080 + f267d3c commit 962bba7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EventListener/ExceptionListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public function onConsoleException(ConsoleExceptionEvent $event)
$this->client->captureException($exception, $data);
}

private function shouldExceptionCaptureBeSkipped(\Exception $exception)
protected function shouldExceptionCaptureBeSkipped(\Exception $exception)
{
foreach ($this->skipCapture as $className) {
if ($exception instanceof $className) {
Expand Down

0 comments on commit 962bba7

Please sign in to comment.