Skip to content

Commit c11c1bd

Browse files
committed
ICL: getNotificationFrom method fixed.
1 parent c23acbd commit c11c1bd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ class Foo extends Command
107107
108108
protected function getNotificationFrom()
109109
{
110-
return 'My Awesome Notification <no-reply@awesome.com>';
110+
return ['no-reply@awesome.com' => 'My Awesome Notification'];
111111
}
112112
113113
protected function getNotificationLevel()

src/Loggable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ protected function getNotificationSubject()
148148

149149
protected function getNotificationFrom()
150150
{
151-
return 'ICLogger Notification <no-reply@example.com>';
151+
return ['no-reply@example.com' => 'ICLogger Notification'];
152152
}
153153

154154
protected function getNotificationLevel()

0 commit comments

Comments
 (0)