%PDF- %PDF-
Direktori : /var/www/projetos/suporte.iigd.com.br/vendor/laminas/laminas-mail/src/Transport/ |
Current File : //var/www/projetos/suporte.iigd.com.br/vendor/laminas/laminas-mail/src/Transport/InMemory.php |
<?php namespace Laminas\Mail\Transport; use Laminas\Mail\Message; /** * InMemory transport * * This transport will just store the message in memory. It is helpful * when unit testing, or to prevent sending email when in development or * testing. */ class InMemory implements TransportInterface { /** * @var null|Message */ protected $lastMessage; /** * Takes the last message and saves it for testing. * * @param Message $message */ public function send(Message $message) { $this->lastMessage = $message; } /** * Get the last message sent. * * @return null|Message */ public function getLastMessage() { return $this->lastMessage; } }