Skip to content

Commit 2f4b059

Browse files
committed
fix: StyleCI issues
1 parent f656d97 commit 2f4b059

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/App/Traits/ExceptionNotificationHandlerTrait.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ public function sendEmail(Throwable $exception): void
4545
try {
4646
$content = [
4747
'message' => $exception->getMessage(),
48-
'file' => $exception->getFile(),
49-
'line' => $exception->getLine(),
50-
'trace' => $exception->getTrace(),
51-
'url' => request()->url(),
52-
'body' => request()->all(),
53-
'ip' => request()->ip(),
48+
'file' => $exception->getFile(),
49+
'line' => $exception->getLine(),
50+
'trace' => $exception->getTrace(),
51+
'url' => request()->url(),
52+
'body' => request()->all(),
53+
'ip' => request()->ip(),
5454
];
5555

5656
Mail::send(new ExceptionOccurred($content));

src/config/exceptions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
| This is the subject of the exception email
6161
|
6262
*/
63-
'emailExceptionSubject' => env('EMAIL_EXCEPTION_SUBJECT', 'Error on ' . config('app.env')),
63+
'emailExceptionSubject' => env('EMAIL_EXCEPTION_SUBJECT', 'Error on '.config('app.env')),
6464

6565
/*
6666
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)