From 37b2a19989b98215dd66bb10a6668f6e79f28e2f Mon Sep 17 00:00:00 2001 From: DemigodCode <36764562+DemigodCode@users.noreply.github.com> Date: Wed, 17 Mar 2021 14:20:55 +0100 Subject: [PATCH] [DebugBundle] Add $defaultName to PlaceholderCommand --- .../DebugBundle/Command/ServerDumpPlaceholderCommand.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Symfony/Bundle/DebugBundle/Command/ServerDumpPlaceholderCommand.php b/src/Symfony/Bundle/DebugBundle/Command/ServerDumpPlaceholderCommand.php index 7df85c70c9..0feabe95fa 100644 --- a/src/Symfony/Bundle/DebugBundle/Command/ServerDumpPlaceholderCommand.php +++ b/src/Symfony/Bundle/DebugBundle/Command/ServerDumpPlaceholderCommand.php @@ -27,6 +27,9 @@ use Symfony\Component\VarDumper\Server\DumpServer; */ class ServerDumpPlaceholderCommand extends Command { + protected static $defaultName = 'server:dump'; + protected static $defaultDescription = 'Start a dump server that collects and displays dumps in a single place'; + private $replacedCommand; public function __construct(DumpServer $server = null, array $descriptors = [])