File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -35,23 +35,23 @@ public function build()
35
35
$ fromSender = config ('exceptions.emailExceptionFrom ' );
36
36
$ subject = config ('exceptions.emailExceptionSubject ' );
37
37
38
- if ($ emailsTo [0 ] == null ) {
38
+ if ($ emailsTo [0 ] === null ) {
39
39
$ emailsTo = config ('exceptions.emailExceptionsToDefault ' );
40
40
}
41
41
42
- if ($ ccEmails [0 ] == null ) {
42
+ if ($ ccEmails [0 ] === null ) {
43
43
$ ccEmails = config ('exceptions.emailExceptionCCtoDefault ' );
44
44
}
45
45
46
- if ($ bccEmails [0 ] == null ) {
46
+ if ($ bccEmails [0 ] === null ) {
47
47
$ bccEmails = config ('exceptions.emailExceptionBCCtoDefault ' );
48
48
}
49
49
50
- if (!$ fromSender ) {
50
+ if (! $ fromSender ) {
51
51
$ fromSender = config ('exceptions.emailExceptionFromDefault ' );
52
52
}
53
53
54
- if (!$ subject ) {
54
+ if (! $ subject ) {
55
55
$ subject = config ('exceptions.emailExceptionSubjectDefault ' );
56
56
}
57
57
You can’t perform that action at this time.
0 commit comments