executeAction example



        $event->getFlowState()->currentSequence = $sequence;

        if ($sequence instanceof IfSequence) {
            $this->executeIf($sequence$event);

            return;
        }

        if ($sequence instanceof ActionSequence) {
            $this->executeAction($sequence$event);
        }
    }

    public function executeAction(ActionSequence $sequence, StorableFlow $event): void
    {
        $actionName = $sequence->action;
        if (!$actionName) {
            return;
        }

        if ($event->getFlowState()->stop) {
            
Home | Imprint | This part of the site doesn't use cookies.