From a25642507c88036ec262d3402796dbb73a7db1a8 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Sat, 15 Aug 2020 21:08:25 +0100 Subject: [PATCH] Add a space before concat operator --- app/Exceptions/Handler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index a5f8d5e3..d00054b4 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -59,7 +59,7 @@ class Handler extends ExceptionHandler ]); $exceptionName = get_class($throwable) ?? 'Unknown Exception'; - $title = $exceptionName .': ' . $throwable->getMessage(); + $title = $exceptionName . ': ' . $throwable->getMessage(); $guzzle->post( config('logging.slack'),