Skip to content

Commit

Permalink
Add missing parameter to toMail (#15448)
Browse files Browse the repository at this point in the history
  • Loading branch information
ElfSundae authored and taylorotwell committed Sep 15, 2016
1 parent 086d492 commit 4df539c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Illuminate/Auth/Notifications/ResetPassword.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,10 @@ public function via($notifiable)
/**
* Build the mail representation of the notification.
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail()
public function toMail($notifiable)
{
return (new MailMessage)
->line('You are receiving this email because we received a password reset request for your account.')
Expand Down

0 comments on commit 4df539c

Please sign in to comment.