Skip to content

Commit ec4c2c4

Browse files
committed
ICL: getNotificationFrom method fixed.
1 parent 125493f commit ec4c2c4

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
@@ -106,7 +106,7 @@ class Foo extends Command
106106
107107
protected function getNotificationFrom()
108108
{
109-
return ['[email protected]' => 'My Awesome Notification'];
109+
return ['address' => '[email protected]', 'name' => 'My Awesome Notification'];
110110
}
111111
112112
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 ['[email protected]' => 'ICLogger Notification'];
151+
return ['address' => '[email protected]', 'name' => 'ICLogger Notification'];
152152
}
153153

154154
protected function getNotificationLevel()

0 commit comments

Comments
 (0)