Programming Language PHP

Namespace Oro\Bundle\WorkflowBundle\Entity

Class WorkflowTransitionRecord

Total Examples 1

1 code examples of PHP Oro\Bundle\WorkflowBundle\Entity\WorkflowTransitionRecord 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;
    }