Skip to content

Commit ce4c1ae

Browse files
committed
minor symfony#19295 Remove semicolon marking previous end of statement (adrolter)
This PR was submitted for the 7.0 branch but it was merged into the 6.3 branch instead. Discussion ---------- Remove semicolon marking previous end of statement It looks like another example was added at some point without removing the existing semicolon, causing a syntax error in the example. Commits ------- 734bd6b Remove semicolon marking previous end of statement
2 parents fa4e20f + 734bd6b commit ce4c1ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configuration.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ reusable configuration value. By convention, parameters are defined under the
263263
264264
// PHP constants as parameter values
265265
->set('app.some_constant', GLOBAL_CONSTANT)
266-
->set('app.another_constant', BlogPost::MAX_ITEMS);
266+
->set('app.another_constant', BlogPost::MAX_ITEMS)
267267
268268
// Enum case as parameter values
269269
->set('app.some_enum', PostState::Published);

0 commit comments

Comments
 (0)