Skip to content

Commit

Permalink
fix error that error handling fails due to visibility of method
Browse files Browse the repository at this point in the history
  • Loading branch information
luceos committed Jul 1, 2021
1 parent 1d75630 commit b557923
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SentryServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public function boot(SettingsRepositoryInterface $settings)
}
}

protected function handleError($level, $message, $file = '', $line = 0)
public function handleError($level, $message, $file = '', $line = 0)
{
// ignore STMT_PREPARE errors because Eloquent automatically tries reconnecting
if (strpos($message, 'STMT_PREPARE packet') !== false) {
Expand Down

0 comments on commit b557923

Please sign in to comment.