Copied!

ExecuteEvent

ExecuteEvent.php : 17
Extends AfterEvent

Event emitted after action execution.

Methods

public__construct()

ExecuteEvent.php : 27
public __construct(ActionInterface $action, ActionConfigurationInterface|null $actionConfiguration, ActionHandlerInterface|null $handler, ActionResponseInterface $actionResponseResult)

Parameters

Name Type Default value Description
$action ActionInterface - -
$actionConfiguration ActionConfigurationInterface|null - -
$handler ActionHandlerInterface|null - -
$actionResponseResult ActionResponseInterface - -

publicgetAction()

ExecuteEvent.php : 39
public getAction() : ActionInterface

Return values

ActionInterface

publicgetActionConfiguration()

ExecuteEvent.php : 44
public getActionConfiguration() : ActionConfigurationInterface|null

Return values

ActionConfigurationInterface|null

publicgetActionResponseResult()

ExecuteEvent.php : 54
public getActionResponseResult() : ActionResponseInterface

Return values

ActionResponseInterface

publicgetHandler()

ExecuteEvent.php : 49
public getHandler() : ActionHandlerInterface|null

Return values

ActionHandlerInterface|null

publicisPropagationStopped()

Event.php : 38
public isPropagationStopped() : bool

Return values

bool

publicstopPropagation()

Event.php : 50

Stops the propagation of the event to further event listeners.

public stopPropagation() : void

If multiple event listeners are connected to the same event, no further event listener will be triggered once any trigger calls stopPropagation().