diff --git a/pkg/enqueue/Symfony/Client/Meta/QueuesCommand.php b/pkg/enqueue/Symfony/Client/Meta/QueuesCommand.php index 02d263d2b..a1f9f54fe 100644 --- a/pkg/enqueue/Symfony/Client/Meta/QueuesCommand.php +++ b/pkg/enqueue/Symfony/Client/Meta/QueuesCommand.php @@ -47,7 +47,7 @@ protected function configure() protected function execute(InputInterface $input, OutputInterface $output) { $table = new Table($output); - $table->setHeaders(['Client Name', 'Transport Name', 'processors']); + $table->setHeaders(['Client Name', 'Transport Name', 'Processors']); $count = 0; $firstRow = true; diff --git a/pkg/enqueue/Symfony/Client/Meta/TopicsCommand.php b/pkg/enqueue/Symfony/Client/Meta/TopicsCommand.php index 8314fb99a..51019a7d6 100644 --- a/pkg/enqueue/Symfony/Client/Meta/TopicsCommand.php +++ b/pkg/enqueue/Symfony/Client/Meta/TopicsCommand.php @@ -47,7 +47,7 @@ protected function configure() protected function execute(InputInterface $input, OutputInterface $output) { $table = new Table($output); - $table->setHeaders(['Topic', 'Description', 'processors']); + $table->setHeaders(['Topic', 'Description', 'Processors']); $count = 0; $firstRow = true;