Skip to content

Commit 1b67781

Browse files
committed
refactor: Remove default separator argument for str_getcsv in mailable
1 parent 7a9a904 commit 1b67781

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/App/Mail/ExceptionOccurred.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ public function __construct($content)
2525
*/
2626
public function build(): Mailable
2727
{
28-
$emailsTo = str_getcsv(config('exceptions.emailExceptionsTo'), ',');
29-
$ccEmails = str_getcsv(config('exceptions.emailExceptionCCto'), ',');
30-
$bccEmails = str_getcsv(config('exceptions.emailExceptionBCCto'), ',');
28+
$emailsTo = str_getcsv(config('exceptions.emailExceptionsTo'));
29+
$ccEmails = str_getcsv(config('exceptions.emailExceptionCCto'));
30+
$bccEmails = str_getcsv(config('exceptions.emailExceptionBCCto'));
3131
$fromSender = config('exceptions.emailExceptionFrom');
3232
$subject = config('exceptions.emailExceptionSubject');
3333

0 commit comments

Comments
 (0)