diff --git a/src/Symfony/Component/Workflow/Tests/WorkflowTest.php b/src/Symfony/Component/Workflow/Tests/WorkflowTest.php index c3e39b02b4..84d02a970d 100644 --- a/src/Symfony/Component/Workflow/Tests/WorkflowTest.php +++ b/src/Symfony/Component/Workflow/Tests/WorkflowTest.php @@ -572,7 +572,7 @@ class WorkflowTest extends TestCase } } -class EventDispatcherMock implements \Symfony\Component\EventDispatcher\EventDispatcherInterface +class EventDispatcherMock implements \Symfony\Contracts\EventDispatcher\EventDispatcherInterface { public $dispatchedEvents = []; @@ -582,32 +582,4 @@ class EventDispatcherMock implements \Symfony\Component\EventDispatcher\EventDis return $event; } - - public function addListener($eventName, $listener, $priority = 0) - { - } - - public function addSubscriber(\Symfony\Component\EventDispatcher\EventSubscriberInterface $subscriber) - { - } - - public function removeListener($eventName, $listener) - { - } - - public function removeSubscriber(\Symfony\Component\EventDispatcher\EventSubscriberInterface $subscriber) - { - } - - public function getListeners($eventName = null): array - { - } - - public function getListenerPriority($eventName, $listener): ?int - { - } - - public function hasListeners($eventName = null): bool - { - } }