From 5a73a17581d027bc1cd8662ae3fc711710ed9c01 Mon Sep 17 00:00:00 2001 From: Julien Bouffard Date: Tue, 29 May 2018 15:32:53 +0200 Subject: [PATCH] add missing option in yaml configuration Add enabled: true in framework.profiler configuration in yaml example. xml and php examples are ok. --- testing/profiling.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/profiling.rst b/testing/profiling.rst index 8dd82dcd90e..be9e0feb80c 100644 --- a/testing/profiling.rst +++ b/testing/profiling.rst @@ -25,7 +25,7 @@ tests significantly. That's why Symfony disables it by default: # ... framework: - profiler: { collect: false } + profiler: { enabled: true, collect: false } .. code-block:: xml