class Action

Connector Handle Result

Properties

protected bool $_isHandled Status of the processing of an action
protected mixed $_result Action Result
protected mixed $_error Action Error

Methods

bool
isHandled()

Getter for $_isHandled

__construct(bool $handled = null, mixed $result = null, mixed $error = null)

Constructor

setHandled(bool $handled)

Setter for $_isHandled

mixed
getResult()

Getter for $_result

setResult(mixed $result)

Setter for $_result

mixed
getError()

Getter for $_error

setError(mixed $error)

Setter for $_error

boolean
isError()

Return true if an error occurs otherwise false

Details

at line 43
bool isHandled()

Getter for $_isHandled

Return Value

bool

at line 55
__construct(bool $handled = null, mixed $result = null, mixed $error = null)

Constructor

Parameters

bool $handled
mixed $result
mixed $error

at line 68
Action setHandled(bool $handled)

Setter for $_isHandled

Parameters

bool $handled

Return Value

Action

at line 79
mixed getResult()

Getter for $_result

Return Value

mixed

at line 90
Action setResult(mixed $result)

Setter for $_result

Parameters

mixed $result

Return Value

Action

at line 101
mixed getError()

Getter for $_error

Return Value

mixed

at line 112
Action setError(mixed $error)

Setter for $_error

Parameters

mixed $error

Return Value

Action

at line 123
boolean isError()

Return true if an error occurs otherwise false

Return Value

boolean