Skip to content

Commit

Permalink
Bump version 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gillesbourgeat committed Jun 9, 2016
1 parent 984795d commit ea2f848
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 16 deletions.
16 changes: 7 additions & 9 deletions Config/module.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<module xmlns="http://thelia.net/schema/dic/module"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://thelia.net/schema/dic/module http://thelia.net/schema/dic/module/module-2_2.xsd">
xsi:schemaLocation="http://thelia.net/schema/dic/module http://thelia.net/schema/dic/module/module-2_1.xsd">
<fullnamespace>TheliaMailCatcher\TheliaMailCatcher</fullnamespace>
<descriptive locale="en_US">
<title>This module catches all mails sent from Thelia and redirect them to the admin emails (registered to receive notifications) in the store configuration.</title>
Expand All @@ -13,14 +13,12 @@
<language>en_US</language>
<language>fr_FR</language>
</languages>
<version>0.1.0</version>
<authors>
<author>
<name>Gilles Bourgeat</name>
<email>gilles.bourgeat@gmail.com</email>
</author>
</authors>
<version>0.1.1</version>
<author>
<name>Gilles Bourgeat</name>
<email>gilles.bourgeat@gmail.com</email>
</author>
<type>classic</type>
<thelia>2.0.0</thelia>
<thelia>2.1.0</thelia>
<stability>alpha</stability>
</module>
14 changes: 7 additions & 7 deletions Plugin/SwiftEventListenerPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand All @@ -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)
{
}
}

0 comments on commit ea2f848

Please sign in to comment.