From e860b1a173c7c4f2da6fe0300a5247aa4f42d566 Mon Sep 17 00:00:00 2001 From: Stanislav Zhuk Date: Sun, 2 Jul 2023 17:54:41 +0300 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 48f8746..bf63495 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ public function register(): void // app/Exceptions/Handler.php public function report(Throwable $exception) { - if ($this->shouldReport($exception) { + if ($this->shouldReport($exception)) { \Stasadev\SlackNotifier\Facades\SlackNotifier::send($exception); }