From c6c0908067d1d1fd2bd0a72d478018eca4c22069 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Sun, 28 Jul 2024 12:33:44 +0200 Subject: [PATCH] fix dump destination value in PHP config --- reference/configuration/debug.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/configuration/debug.rst b/reference/configuration/debug.rst index 95976cad580..f33b3f3ba9a 100644 --- a/reference/configuration/debug.rst +++ b/reference/configuration/debug.rst @@ -99,7 +99,7 @@ Typically, you would set this to ``php://stderr``: return static function (ContainerConfigurator $container): void { $container->extension('debug', [ - 'dump_destination' => 'tcp://%env(VAR_DUMPER_SERVER)%', + 'dump_destination' => 'php://stderr', ]); };