Skip to content

Commit da0a99c

Browse files
loic425diimpp
andauthored
Apply suggestions from code review
Co-authored-by: Dmitri Perunov <[email protected]>
1 parent 91e94ed commit da0a99c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/Component/src/StateMachine/StateMachineInterface.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,12 @@
1818
interface StateMachineInterface extends BaseStateMachineInterface
1919
{
2020
/**
21-
* Returns the possible transition from given state
22-
* Returns null if no transition is possible
21+
* Returns the possible transition from given state or null if no transition is possible
2322
*/
2423
public function getTransitionFromState(string $fromState): ?string;
2524

2625
/**
27-
* Returns the possible transition to the given state
28-
* Returns null if no transition is possible
26+
* Returns the possible transition to the given state or null if no transition is possible
2927
*/
3028
public function getTransitionToState(string $toState): ?string;
3129
}

0 commit comments

Comments
 (0)