Skip to content

Commit d282ee7

Browse files
committed
minor symfony#8472 Deprecated the web_profiler.position option (javiereguiluz)
This PR was merged into the 3.4 branch. Discussion ---------- Deprecated the web_profiler.position option This fixes symfony#8466. Commits ------- b0a0739 Deprecated the web_profiler.position option
2 parents 7d202b7 + b0a0739 commit d282ee7

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

reference/configuration/web_profiler.rst

+7-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ environment.
3232
position
3333
~~~~~~~~
3434

35+
.. versionadded:: 3.4
36+
The ``position`` option was deprecated in Symfony 3.4 and it will be removed
37+
in Symfony 4.0, where the toolbar is always displayed in the ``bottom`` position.
38+
3539
**type**: ``string`` **default**: ``bottom``
3640

3741
It defines the location of the browser window where the toolbar is displayed.
@@ -79,10 +83,12 @@ Full Default Configuration
7983
# app/config/config.yml
8084
web_profiler:
8185
toolbar: false
82-
position: bottom
8386
intercept_redirects: false
8487
excluded_ajax_paths: ^/bundles|^/_wdt
8588
89+
# DEPRECATED, it can be removed safely from your configuration
90+
position: bottom
91+
8692
# DEPRECATED, it can be removed safely from your configuration
8793
verbose: true
8894

0 commit comments

Comments
 (0)