summaryrefslogtreecommitdiff
path: root/vendor/symfony/http-kernel/Tests/Fixtures/TestEventDispatcher.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/symfony/http-kernel/Tests/Fixtures/TestEventDispatcher.php')
-rw-r--r--vendor/symfony/http-kernel/Tests/Fixtures/TestEventDispatcher.php36
1 files changed, 0 insertions, 36 deletions
diff --git a/vendor/symfony/http-kernel/Tests/Fixtures/TestEventDispatcher.php b/vendor/symfony/http-kernel/Tests/Fixtures/TestEventDispatcher.php
deleted file mode 100644
index a0665ef991..0000000000
--- a/vendor/symfony/http-kernel/Tests/Fixtures/TestEventDispatcher.php
+++ /dev/null
@@ -1,36 +0,0 @@
-<?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\HttpKernel\Tests\Fixtures;
-
-use Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher;
-
-class TestEventDispatcher extends TraceableEventDispatcher
-{
- public function getCalledListeners()
- {
- return ['foo'];
- }
-
- public function getNotCalledListeners()
- {
- return ['bar'];
- }
-
- public function reset()
- {
- }
-
- public function getOrphanedEvents()
- {
- return [];
- }
-}