From d446b38e17d54b76eadf36c4ce6a37c750b56faa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alvaro=20Fla=C3=B1o?= Date: Tue, 24 Aug 2021 10:23:39 -0400 Subject: [PATCH] Fixed dump using domains The "domains" parameter was being set as the "locale" parameter for the RoutesResponse constructor. This meant that you couldn't dump routes using domains (the debug command worked though) --- Command/DumpCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Command/DumpCommand.php b/Command/DumpCommand.php index e9cd2774..41b20864 100644 --- a/Command/DumpCommand.php +++ b/Command/DumpCommand.php @@ -174,6 +174,7 @@ private function doDump(InputInterface $input, OutputInterface $output) $extractor->getHost(), $extractor->getPort(), $extractor->getScheme(), + $input->getOption('locale'), $domain ), 'json',