PHP Interface Mongolid\Event\EventTriggerInterface

Afficher le fichier Open project: leroy-merlin-br/mongolid

Méthodes publiques

Méthode Description
fire ( string $event, mixed $payload, boolean $halt ) : mixed Triggers / Dispatches a new event to the event handlers or listeners that are being used.

Method Details

fire() public méthode

Triggers / Dispatches a new event to the event handlers or listeners that are being used.
public fire ( string $event, mixed $payload, boolean $halt ) : mixed
$event string Identification of the event.
$payload mixed Data that is going to be sent to the event handler.
$halt boolean The output of the event handler will be used in a conditional inside the context of where the event is being fired. This means that, if the event handler returns false, it will probably stop the action being executed, for example, "saving".
Résultat mixed Event handler return. The importance of this return is determined by $halt