PATH:
home
/
lab2454c
/
bancmils.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Support
/
Testing
/
Fakes
<?php namespace Illuminate\Support\Testing\Fakes; use Illuminate\Contracts\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\Contracts\Mail\Mailable $mailable * @return void */ public function send(Mailable $mailable) { $this->mailer->send($this->fill($mailable)); } /** * Push the given mailable onto the queue. * * @param \Illuminate\Contracts\Mail\Mailable $mailable * @return mixed */ public function queue(Mailable $mailable) { return $this->mailer->queue($this->fill($mailable)); } }
[-] BatchRepositoryFake.php
[edit]
[-] PendingBatchFake.php
[edit]
[+]
..
[-] PendingMailFake.php
[edit]
[-] MailFake.php
[edit]
[-] EventFake.php
[edit]
[-] .htaccess
[edit]
[-] NotificationFake.php
[edit]
[-] BusFake.php
[edit]
[-] PendingChainFake.php
[edit]
[-] QueueFake.php
[edit]