/var/www/flurhymez/vendor/laravel/framework/src/Illuminate/Mail/Transport
NameSizeModeActions
ArrayTransport.php11730644editdlrm
LogTransport.php15850644editdlrm
MailgunTransport.php49030644editdlrm
SesTransport.php21260644editdlrm
Transport.php24120644editdlrm
Edit: /var/www/flurhymez/vendor/laravel/framework/src/Illuminate/Mail/Transport/ArrayTransport.php (1173B)
messages = new Collection; } /** * {@inheritdoc} * * @return int */ public function send(Swift_Mime_SimpleMessage $message, &$failedRecipients = null) { $this->beforeSendPerformed($message); $this->messages[] = $message; return $this->numberOfRecipients($message); } /** * Retrieve the collection of messages. * * @return \Illuminate\Support\Collection */ public function messages() { return $this->messages; } /** * Clear all of the messages from the local collection. * * @return \Illuminate\Support\Collection */ public function flush() { return $this->messages = new Collection; } }