Allow null eventName in EventDispatcher::dispatch

main
Jordi Boggiano 2 years ago committed by GitHub
parent 039701656f
commit 906692cd04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -91,12 +91,12 @@ class EventDispatcher
/**
* Dispatch an event
*
* @param string $eventName An event name
* @param Event $event
* @return int return code of the executed script if any, for php scripts a false return
* @param string|null $eventName An event name if no $event is provided
* @param Event $event
* @return int return code of the executed script if any, for php scripts a false return
* value is changed to 1, anything else to 0
*/
public function dispatch(string $eventName, Event $event = null): int
public function dispatch(?string $eventName, Event $event = null): int
{
if (null === $event) {
$event = new Event($eventName);

Loading…
Cancel
Save