mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-03-01 15:21:02 +03:00
48 lines
1.0 KiB
PHP
48 lines
1.0 KiB
PHP
<?php
|
|
/**
|
|
* Zend Framework (http://framework.zend.com/)
|
|
*
|
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
|
|
namespace Zend\Mail\Transport;
|
|
|
|
use Zend\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 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 Message
|
|
*/
|
|
public function getLastMessage()
|
|
{
|
|
return $this->lastMessage;
|
|
}
|
|
}
|