Skip to content

Commit

Permalink
Added missing return in the sendNow pending mail fake (#32095)
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell authored Mar 24, 2020
1 parent 4e48acf commit 4e86b00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Support/Testing/Fakes/PendingMailFake.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function send(Mailable $mailable)
*/
public function sendNow(Mailable $mailable)
{
$this->mailer->send($this->fill($mailable));
return $this->mailer->send($this->fill($mailable));
}

/**
Expand Down

0 comments on commit 4e86b00

Please sign in to comment.