Skip to content

Commit 31f1594

Browse files
committed
Merge branch 'laravel7' of github.com:jeremykenedy/laravel-exception-notifier into laravel7
2 parents 0593c17 + 5fda64d commit 31f1594

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/App/Mail/ExceptionOccured.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,23 +35,23 @@ public function build()
3535
$fromSender = config('exceptions.emailExceptionFrom');
3636
$subject = config('exceptions.emailExceptionSubject');
3737

38-
if ($emailsTo[0] == null) {
38+
if ($emailsTo[0] === null) {
3939
$emailsTo = config('exceptions.emailExceptionsToDefault');
4040
}
4141

42-
if ($ccEmails[0] == null) {
42+
if ($ccEmails[0] === null) {
4343
$ccEmails = config('exceptions.emailExceptionCCtoDefault');
4444
}
4545

46-
if ($bccEmails[0] == null) {
46+
if ($bccEmails[0] === null) {
4747
$bccEmails = config('exceptions.emailExceptionBCCtoDefault');
4848
}
4949

50-
if (!$fromSender) {
50+
if (! $fromSender) {
5151
$fromSender = config('exceptions.emailExceptionFromDefault');
5252
}
5353

54-
if (!$subject) {
54+
if (! $subject) {
5555
$subject = config('exceptions.emailExceptionSubjectDefault');
5656
}
5757

0 commit comments

Comments
 (0)