芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/www/vendor/laravel/framework/src/Illuminate/Mail/Transport/ArrayTransport.php
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; } }