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 a0d3ff6 commit 642db2fCopy full SHA for 642db2f
1 file changed
tests/Fixtures/StateMachine.php
@@ -44,7 +44,7 @@ public function apply($action)
44
if (isset($this->transitions[$action]) && $this->transitions[$action]['from'] === $this->currentState) {
45
$this->currentState = $this->transitions[$action]['to'];
46
} else {
47
- throw new Exception('Transition not found,');
+ throw new Exception('Transition not found.');
48
}
49
50
0 commit comments