Allow null eventName in EventDispatcher::dispatch
parent
039701656f
commit
906692cd04
|
@ -91,12 +91,12 @@ class EventDispatcher
|
||||||
/**
|
/**
|
||||||
* Dispatch an event
|
* Dispatch an event
|
||||||
*
|
*
|
||||||
* @param string $eventName An event name
|
* @param string|null $eventName An event name if no $event is provided
|
||||||
* @param Event $event
|
* @param Event $event
|
||||||
* @return int return code of the executed script if any, for php scripts a false return
|
* @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
|
* 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) {
|
if (null === $event) {
|
||||||
$event = new Event($eventName);
|
$event = new Event($eventName);
|
||||||
|
|
Loading…
Reference in New Issue