From 4e86b00f2139fc1a31e32dac9567dc24c54309b8 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Tue, 24 Mar 2020 20:01:29 +0000 Subject: [PATCH] Added missing return in the sendNow pending mail fake (#32095) --- src/Illuminate/Support/Testing/Fakes/PendingMailFake.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Support/Testing/Fakes/PendingMailFake.php b/src/Illuminate/Support/Testing/Fakes/PendingMailFake.php index 37a4000e78c8..af33d02920bc 100644 --- a/src/Illuminate/Support/Testing/Fakes/PendingMailFake.php +++ b/src/Illuminate/Support/Testing/Fakes/PendingMailFake.php @@ -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)); } /**