You are here

public function Workflow::getTransitionsById in Workflow 8

Overrides WorkflowInterface::getTransitionsById

File

src/Entity/Workflow.php, line 469

Class

Workflow
Workflow configuration entity to persistently store configuration.

Namespace

Drupal\workflow\Entity

Code

public function getTransitionsById($tid) {
  return $this
    ->getTransitions([
    $tid,
  ]);
}