Interface EventInterface
Represents the transport class of events across the system. It receives a name, subject and an optional payload. The name can be any string that uniquely identifies the event across the application, while the subject represents the object that the event applies to.
Method Summary
-
getData() public
Accesses the event data/payload.
-
getName() public
Returns the name of this event. This is usually used as the event identifier.
-
getResult() public
The result value of the event listeners.
-
getSubject() public
Returns the subject of this event.
-
isStopped() public
Checks if the event is stopped.
-
setData() public
Assigns a value to the data/payload of this event.
-
setResult() public
Listeners can attach a result value to the event.
-
stopPropagation() public
Stops the event from being used anymore.
Method Detail
getData() ¶ public
getData(string|null $key = null): mixed
Accesses the event data/payload.
Parameters
-
string|null
$key optional The data payload element to return, or null to return all data.
Returns
mixed
getName() ¶ public
getName(): string
Returns the name of this event. This is usually used as the event identifier.
Returns
string
setData() ¶ public
setData(array|string $key, mixed $value = null): $this
Assigns a value to the data/payload of this event.
Parameters
-
array|string
$key An array will replace all payload data, and a key will set just that array item.
-
mixed
$value optional The value to set.
Returns
$this
setResult() ¶ public
setResult(mixed $value = null): $this
Listeners can attach a result value to the event.
Parameters
-
mixed
$value optional The value to set.
Returns
$this
stopPropagation() ¶ public
stopPropagation(): void
Stops the event from being used anymore.
Returns
void