Programming Language PHP

Namespace Oro\Bundle\WorkflowBundle\Entity

Class WorkflowTransitionRecord

Method/Function setWorkflowItem

Total Examples 1

1 code examples of PHP Oro\Bundle\WorkflowBundle\Entity\WorkflowTransitionRecord::setWorkflowItem extracted from open source projects

Was this example useful?
0
                                                    public function addTransitionRecord(WorkflowTransitionRecord $transitionRecord): self
    {
        $transitionRecord->setWorkflowItem($this);
        $this->transitionRecords->add($transitionRecord);

        return $this;
    }
                                            
WorkflowTransitionRecord's Other Methods