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 --- .../Debug/TraceableEventDispatcherInterface.php | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 inc/mailgun/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php (limited to 'inc/mailgun/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php') diff --git a/inc/mailgun/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php b/inc/mailgun/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php new file mode 100644 index 0000000..5483e81 --- /dev/null +++ b/inc/mailgun/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php @@ -0,0 +1,34 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\EventDispatcher\Debug; + +use Symfony\Component\EventDispatcher\EventDispatcherInterface; + +/** + * @author Fabien Potencier + */ +interface TraceableEventDispatcherInterface extends EventDispatcherInterface +{ + /** + * Gets the called listeners. + * + * @return array An array of called listeners + */ + public function getCalledListeners(); + + /** + * Gets the not called listeners. + * + * @return array An array of not called listeners + */ + public function getNotCalledListeners(); +} -- cgit v1.2.3