From 9eeded33f68872515954a2fc177fcb47a9273ae9 Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Fri, 15 Aug 2014 17:23:41 -0700 Subject: Add email notifications --- vendor/swiftmailer/classes/Swift/NullTransport.php | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 vendor/swiftmailer/classes/Swift/NullTransport.php (limited to 'vendor/swiftmailer/classes/Swift/NullTransport.php') diff --git a/vendor/swiftmailer/classes/Swift/NullTransport.php b/vendor/swiftmailer/classes/Swift/NullTransport.php new file mode 100644 index 00000000..726d83ca --- /dev/null +++ b/vendor/swiftmailer/classes/Swift/NullTransport.php @@ -0,0 +1,39 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +/** + * Pretends messages have been sent, but just ignores them. + * + * @author Fabien Potencier + */ +class Swift_NullTransport extends Swift_Transport_NullTransport +{ + /** + * Create a new NullTransport. + */ + public function __construct() + { + call_user_func_array( + array($this, 'Swift_Transport_NullTransport::__construct'), + Swift_DependencyContainer::getInstance() + ->createDependenciesFor('transport.null') + ); + } + + /** + * Create a new NullTransport instance. + * + * @return Swift_NullTransport + */ + public static function newInstance() + { + return new self(); + } +} -- cgit v1.2.3