From ea2f84893389bb6b1f04b87d9c170387f5468303 Mon Sep 17 00:00:00 2001 From: gilles Date: Thu, 9 Jun 2016 14:25:29 +0200 Subject: [PATCH] Bump version 0.1.1 --- Config/module.xml | 16 +++++++--------- Plugin/SwiftEventListenerPlugin.php | 14 +++++++------- 2 files changed, 14 insertions(+), 16 deletions(-) diff --git a/Config/module.xml b/Config/module.xml index bc75c78..b9aeaae 100644 --- a/Config/module.xml +++ b/Config/module.xml @@ -1,7 +1,7 @@ + xsi:schemaLocation="http://thelia.net/schema/dic/module http://thelia.net/schema/dic/module/module-2_1.xsd"> TheliaMailCatcher\TheliaMailCatcher This module catches all mails sent from Thelia and redirect them to the admin emails (registered to receive notifications) in the store configuration. @@ -13,14 +13,12 @@ en_US fr_FR - 0.1.0 - - - Gilles Bourgeat - gilles.bourgeat@gmail.com - - + 0.1.1 + + Gilles Bourgeat + gilles.bourgeat@gmail.com + classic - 2.0.0 + 2.1.0 alpha diff --git a/Plugin/SwiftEventListenerPlugin.php b/Plugin/SwiftEventListenerPlugin.php index c97c8b7..5e3c0de 100644 --- a/Plugin/SwiftEventListenerPlugin.php +++ b/Plugin/SwiftEventListenerPlugin.php @@ -25,13 +25,6 @@ class SwiftEventListenerPlugin implements \Swift_Events_SendListener * @param \Swift_Events_SendEvent $evt */ public function beforeSendPerformed(\Swift_Events_SendEvent $evt) - { - } - - /** - * @param \Swift_Events_SendEvent $evt - */ - public function sendPerformed(\Swift_Events_SendEvent $evt) { $emails = ConfigQuery::getNotificationEmailsList(); @@ -45,4 +38,11 @@ public function sendPerformed(\Swift_Events_SendEvent $evt) $evt->getMessage()->setCc([]); } + + /** + * @param \Swift_Events_SendEvent $evt + */ + public function sendPerformed(\Swift_Events_SendEvent $evt) + { + } }