* @since 2.0 */ class RenderEvent extends Event { /** * @var Action the action currently being executed */ public $action; /** * @var boolean whether the action is in valid state and its life cycle should proceed. */ public $isValid = true; /** * Constructor. * @param Action $action the action associated with this action event. */ public function __construct(Action $action) { $this->action = $action; } }