Issue #2851728 by Sam152, timmillwood: s/transactions/transitions in WorkflowInterface

8.4.x
xjm 2017-02-11 17:35:53 -06:00
parent fea11b6de2
commit e7aba73cbb
1 changed files with 2 additions and 2 deletions

View File

@ -174,7 +174,7 @@ interface WorkflowInterface extends ConfigEntityInterface {
public function getTransitions(array $transition_ids = NULL);
/**
* Gets the transactions IDs for a state for the provided direction.
* Gets the transition IDs for a state for the provided direction.
*
* @param $state_id
* The state to get transitions for.
@ -183,7 +183,7 @@ interface WorkflowInterface extends ConfigEntityInterface {
* values are: 'from' and 'to'.
*
* @return array
* The transactions IDs for a state for the provided direction.
* The transition IDs for a state for the provided direction.
*/
public function getTransitionsForState($state_id, $direction = 'from');