Merge branch '4.3' into 4.4

* 4.3:
  [Workflow] Simplified EventDispatcherMock.
  [Routing] revert the return type for UrlGeneratorInterface::generate to remove null
This commit is contained in:
Nicolas Grekas 2019-11-09 09:06:11 +01:00
commit a20e1ad138
1 changed files with 1 additions and 29 deletions

View File

@ -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
{
}
}