From b0a07393847a45ab4f0fd124d7f6f51dde5d3966 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Wed, 4 Oct 2017 09:13:22 +0200 Subject: [PATCH] Deprecated the web_profiler.position option --- reference/configuration/web_profiler.rst | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/reference/configuration/web_profiler.rst b/reference/configuration/web_profiler.rst index 2512142b239..42aed934203 100644 --- a/reference/configuration/web_profiler.rst +++ b/reference/configuration/web_profiler.rst @@ -32,6 +32,10 @@ environment. position ~~~~~~~~ +.. versionadded:: 3.4 + The ``position`` option was deprecated in Symfony 3.4 and it will be removed + in Symfony 4.0, where the toolbar is always displayed in the ``bottom`` position. + **type**: ``string`` **default**: ``bottom`` It defines the location of the browser window where the toolbar is displayed. @@ -79,10 +83,12 @@ Full Default Configuration # app/config/config.yml web_profiler: toolbar: false - position: bottom intercept_redirects: false excluded_ajax_paths: ^/bundles|^/_wdt + # DEPRECATED, it can be removed safely from your configuration + position: bottom + # DEPRECATED, it can be removed safely from your configuration verbose: true