| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- namespace Illuminate\Support\Testing\Fakes;
- use Illuminate\Mail\Mailable;
- use Illuminate\Mail\PendingMail;
- class PendingMailFake extends PendingMail
- {
- /**
- * Create a new instance.
- *
- * @param \Illuminate\Support\Testing\Fakes\MailFake $mailer
- * @return void
- */
- public function __construct($mailer)
- {
- $this->mailer = $mailer;
- }
- /**
- * Send a new mailable message instance.
- *
- * @param \Illuminate\Mail\Mailable $mailable
- * @return mixed
- */
- public function send(Mailable $mailable)
- {
- return $this->sendNow($mailable);
- }
- /**
- * Send a mailable message immediately.
- *
- * @param \Illuminate\Mail\Mailable $mailable
- * @return mixed
- */
- public function sendNow(Mailable $mailable)
- {
- $this->mailer->send($this->fill($mailable));
- }
- /**
- * Push the given mailable onto the queue.
- *
- * @param \Illuminate\Mail\Mailable $mailable
- * @return mixed
- */
- public function queue(Mailable $mailable)
- {
- return $this->mailer->queue($this->fill($mailable));
- }
- }
|