summaryrefslogtreecommitdiff
path: root/vendor/symfony/event-dispatcher/Tests/LegacyEventDispatcherTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/symfony/event-dispatcher/Tests/LegacyEventDispatcherTest.php')
-rw-r--r--vendor/symfony/event-dispatcher/Tests/LegacyEventDispatcherTest.php35
1 files changed, 35 insertions, 0 deletions
diff --git a/vendor/symfony/event-dispatcher/Tests/LegacyEventDispatcherTest.php b/vendor/symfony/event-dispatcher/Tests/LegacyEventDispatcherTest.php
new file mode 100644
index 0000000000..49aa2f9ff3
--- /dev/null
+++ b/vendor/symfony/event-dispatcher/Tests/LegacyEventDispatcherTest.php
@@ -0,0 +1,35 @@
+<?php
+
+/*
+ * This file is part of the Symfony package.
+ *
+ * (c) Fabien Potencier <fabien@symfony.com>
+ *
+ * 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\Event;
+use Symfony\Component\EventDispatcher\EventDispatcher;
+use Symfony\Component\EventDispatcher\LegacyEventDispatcherProxy;
+
+/**
+ * @group legacy
+ */
+class LegacyEventDispatcherTest extends EventDispatcherTest
+{
+ protected function createEventDispatcher()
+ {
+ return LegacyEventDispatcherProxy::decorate(new TestLegacyEventDispatcher());
+ }
+}
+
+class TestLegacyEventDispatcher extends EventDispatcher
+{
+ public function dispatch($eventName, Event $event = null)
+ {
+ return parent::dispatch($event, $eventName);
+ }
+}