File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ Provides logging and email notifications for Laravel console commands.
3030 protected function getNotificationRecipients()
3131 {
3232 return [
33- ' john.doe@example.com' => ' John Doe' ,
34- ' jane.smith@example.com' => ' Jane Smith' ,
33+ [ ' address ' => ' john.doe@example.com' , ' name ' => ' John Doe' ] ,
34+ [ ' address ' => ' jane.smith@example.com' , ' name ' => ' Jane Smith' ] ,
3535 ];
3636 }
3737
Original file line number Diff line number Diff line change @@ -136,7 +136,9 @@ protected function getLogPath()
136136
137137 protected function getNotificationRecipients ()
138138 {
139- return [];
139+ return [
140+ ['address ' => null , 'name ' => null ],
141+ ];
140142 }
141143
142144 protected function getNotificationSubject ()
You can’t perform that action at this time.
0 commit comments