We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91e94ed commit da0a99cCopy full SHA for da0a99c
src/Component/src/StateMachine/StateMachineInterface.php
@@ -18,14 +18,12 @@
18
interface StateMachineInterface extends BaseStateMachineInterface
19
{
20
/**
21
- * Returns the possible transition from given state
22
- * Returns null if no transition is possible
+ * Returns the possible transition from given state or null if no transition is possible
23
*/
24
public function getTransitionFromState(string $fromState): ?string;
25
26
27
- * Returns the possible transition to the given state
28
+ * Returns the possible transition to the given state or null if no transition is possible
29
30
public function getTransitionToState(string $toState): ?string;
31
}
0 commit comments