public function Transition::from in Drupal 9
Same name and namespace in other branches
- 8 core/modules/workflows/src/Transition.php \Drupal\workflows\Transition::from()
- 10 core/modules/workflows/src/Transition.php \Drupal\workflows\Transition::from()
Gets the transition's from states.
Return value
\Drupal\workflows\StateInterface[] The transition's from states.
Overrides TransitionInterface::from
File
- core/
modules/ workflows/ src/ Transition.php, line 94
Class
- Transition
- A transition value object that describes the transition between states.
Namespace
Drupal\workflowsCode
public function from() {
return $this->workflow
->getStates($this->fromStateIds);
}