Skip to content

Commit e9259a0

Browse files
committed
minor #20074 fix dump destination value in PHP config (xabbuh)
This PR was merged into the 6.4 branch. Discussion ---------- fix dump destination value in PHP config Let the value be the same to what we configure with the YAML and XML examples. Commits ------- c6c0908 fix dump destination value in PHP config
2 parents 3a7ef1c + c6c0908 commit e9259a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reference/configuration/debug.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Typically, you would set this to ``php://stderr``:
9999
100100
return static function (ContainerConfigurator $container): void {
101101
$container->extension('debug', [
102-
'dump_destination' => 'tcp://%env(VAR_DUMPER_SERVER)%',
102+
'dump_destination' => 'php://stderr',
103103
]);
104104
};
105105

0 commit comments

Comments
 (0)