From a8f3669b4ea82f48edbca69742364adf2794e07f Mon Sep 17 00:00:00 2001 From: Carson Fleming Date: Tue, 28 Feb 2017 17:37:57 -0500 Subject: Modularized email and hashing --- .../event-dispatcher/Tests/EventDispatcherTest.php | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 inc/mailgun/symfony/event-dispatcher/Tests/EventDispatcherTest.php (limited to 'inc/mailgun/symfony/event-dispatcher/Tests/EventDispatcherTest.php') diff --git a/inc/mailgun/symfony/event-dispatcher/Tests/EventDispatcherTest.php b/inc/mailgun/symfony/event-dispatcher/Tests/EventDispatcherTest.php new file mode 100644 index 0000000..5faa5c8 --- /dev/null +++ b/inc/mailgun/symfony/event-dispatcher/Tests/EventDispatcherTest.php @@ -0,0 +1,22 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\EventDispatcher\Tests; + +use Symfony\Component\EventDispatcher\EventDispatcher; + +class EventDispatcherTest extends AbstractEventDispatcherTest +{ + protected function createEventDispatcher() + { + return new EventDispatcher(); + } +} -- cgit v1.2.3