summaryrefslogtreecommitdiff
path: root/vendor/swiftmailer/classes/Swift/Plugins/MessageLogger.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-11-04 21:33:05 -0500
committerFrédéric Guillot <fred@kanboard.net>2014-11-04 21:33:05 -0500
commit135b921db75da5995eab7e36393ecd4d2b0bc66f (patch)
tree46efc60fcf1f9d5c57ab1fb9418c2acfbda0698a /vendor/swiftmailer/classes/Swift/Plugins/MessageLogger.php
parent850645dd6b22f5b495d1680e0b49540e0ebf9bd3 (diff)
Switch to composer
Diffstat (limited to 'vendor/swiftmailer/classes/Swift/Plugins/MessageLogger.php')
-rw-r--r--vendor/swiftmailer/classes/Swift/Plugins/MessageLogger.php75
1 files changed, 0 insertions, 75 deletions
diff --git a/vendor/swiftmailer/classes/Swift/Plugins/MessageLogger.php b/vendor/swiftmailer/classes/Swift/Plugins/MessageLogger.php
deleted file mode 100644
index a02ad98e..00000000
--- a/vendor/swiftmailer/classes/Swift/Plugins/MessageLogger.php
+++ /dev/null
@@ -1,75 +0,0 @@
-<?php
-
-/*
- * This file is part of SwiftMailer.
- * (c) 2011 Fabien Potencier
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-/**
- * Stores all sent emails for further usage.
- *
- * @author Fabien Potencier
- */
-class Swift_Plugins_MessageLogger implements Swift_Events_SendListener
-{
- /**
- * @var array
- */
- private $messages;
-
- public function __construct()
- {
- $this->messages = array();
- }
-
- /**
- * Get the message list
- *
- * @return array
- */
- public function getMessages()
- {
- return $this->messages;
- }
-
- /**
- * Get the message count
- *
- * @return int count
- */
- public function countMessages()
- {
- return count($this->messages);
- }
-
- /**
- * Empty the message list
- *
- */
- public function clear()
- {
- $this->messages = array();
- }
-
- /**
- * Invoked immediately before the Message is sent.
- *
- * @param Swift_Events_SendEvent $evt
- */
- public function beforeSendPerformed(Swift_Events_SendEvent $evt)
- {
- $this->messages[] = clone $evt->getMessage();
- }
-
- /**
- * Invoked immediately after the Message is sent.
- *
- * @param Swift_Events_SendEvent $evt
- */
- public function sendPerformed(Swift_Events_SendEvent $evt)
- {
- }
-}