8000 Rename the command `DebugCommand` · sroze/symfony@290c7eb · GitHub
[go: up one dir, main page]

Skip to content

Commit 290c7eb

Browse files
committed
Rename the command DebugCommand
1 parent 9847b83 commit 290c7eb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Symfony/Bundle/FrameworkBundle/Resources/config/console.xml

Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
<tag name="console.command" command="messenger:consume-messages" />
7878
</service>
7979

80-
<service id="console.command.messenger_debug" class="Symfony\Component\Messenger\Command\MessengerDebugCommand">
80+
<service id="console.command.messenger_debug" class="Symfony\Component\Messenger\Command\DebugCommand">
8181
<argument type="collection" /> <!-- Message to handlers mapping -->
8282
<tag name="console.command" command="debug:messenger" />
8383
</service>

src/Symfony/Component/Messenger/Command/MessengerDebugCommand.php renamed to src/Symfony/Component/Messenger/Command/DebugCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*
2424
* @experimental in 4.1
2525
*/
26-
class MessengerDebugCommand extends Command
26+
class DebugCommand extends Command
2727
{
2828
protected static $defaultName = 'debug:messenger';
2929

0 commit comments

Comments
 (0)
0