Skip to content

Commit

Permalink
minor symfony#19295 Remove semicolon marking previous end of statemen…
Browse files Browse the repository at this point in the history
…t (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
  • Loading branch information
OskarStark committed Dec 16, 2023
2 parents fa4e20f + 734bd6b commit ce4c1ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ reusable configuration value. By convention, parameters are defined under the
// PHP constants as parameter values
->set('app.some_constant', GLOBAL_CONSTANT)
->set('app.another_constant', BlogPost::MAX_ITEMS);
->set('app.another_constant', BlogPost::MAX_ITEMS)
// Enum case as parameter values
->set('app.some_enum', PostState::Published);
Expand Down

0 comments on commit ce4c1ae

Please sign in to comment.