Skip to content

Commit 01e3f57

Browse files
committed
minor symfony#20713 Fix the top-level key in the DebugBundle reference (stof)
This PR was merged into the 6.4 branch. Discussion ---------- Fix the top-level key in the DebugBundle reference All our bundle reference pages have the snippet showing the commands to dump the reference and the actual values. However, the DebugBundle reference page copied the snippet from FrameworkBundle without replacing the bundle config namespace. <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `7.x` for features of unreleased versions). --> Commits ------- 7c72d3e Fix the top-level key in the DebugBundle reference
2 parents 9648664 + 7c72d3e commit 01e3f57

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

reference/configuration/debug.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ key in your application configuration.
88
.. code-block:: terminal
99
1010
# displays the default config values defined by Symfony
11-
$ php bin/console config:dump-reference framework
11+
$ php bin/console config:dump-reference debug
1212
1313
# displays the actual config values used by your application
14-
$ php bin/console debug:config framework
14+
$ php bin/console debug:config debug
1515
1616
# displays the config values used by your application and replaces the
1717
# environment variables with their actual values
18-
$ php bin/console debug:config --resolve-env framework
18+
$ php bin/console debug:config --resolve-env debug
1919
2020
.. versionadded:: 6.2
2121

0 commit comments

Comments
 (0)