From 4946c67ed7c0c0555e9c3aaafb1014b453e90db9 Mon Sep 17 00:00:00 2001 From: Danny Kopping Date: Fri, 9 Aug 2019 11:29:06 +0200 Subject: [PATCH] Adding missing semicolon So I'm now a Symfony contributor right? :smirk: --- components/workflow.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/workflow.rst b/components/workflow.rst index 029b0d7dfe5..137695ddb0f 100644 --- a/components/workflow.rst +++ b/components/workflow.rst @@ -50,7 +50,7 @@ these statuses are called **places**. You can define the workflow like this:: ; $singleState = true; // true if the subject can be in only one state at a given time - $property = 'currentState' // subject property name where the state is stored + $property = 'currentState'; // subject property name where the state is stored $marking = new MethodMarkingStore($singleState, $property); $workflow = new Workflow($definition, $marking);