Skip to content

Commit 04bedef

Browse files
committed
fix: Use string for fallback values for str_getcsv
1 parent 20dc91f commit 04bedef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/config/exceptions.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
| This is the email(s) the exceptions will be CC emailed to.
4141
|
4242
*/
43-
'emailExceptionCCto' => env('EMAIL_EXCEPTION_CC', []),
43+
'emailExceptionCCto' => env('EMAIL_EXCEPTION_CC', ''),
4444

4545
/*
4646
|--------------------------------------------------------------------------
@@ -50,7 +50,7 @@
5050
| This is the email(s) the exceptions will be BCC emailed to.
5151
|
5252
*/
53-
'emailExceptionBCCto' => env('EMAIL_EXCEPTION_BCC', []),
53+
'emailExceptionBCCto' => env('EMAIL_EXCEPTION_BCC', ''),
5454

5555
/*
5656
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)