From 294a8b423e4d9575e7a7607e4d734dca5c351540 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Sat, 5 Aug 2023 21:53:46 +0200 Subject: [PATCH] Fix output of ExtractCommand --- src/SPC/command/ExtractCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SPC/command/ExtractCommand.php b/src/SPC/command/ExtractCommand.php index 3a9f718a..f107bf5e 100644 --- a/src/SPC/command/ExtractCommand.php +++ b/src/SPC/command/ExtractCommand.php @@ -25,7 +25,7 @@ public function handle(): int { $sources = array_map('trim', array_filter(explode(',', $this->getArgument('sources')))); if (empty($sources)) { - $this->output->writeln('sources cannot be empty, at least contain one !'); + $this->output->writeln('sources cannot be empty, at least contain one !'); return 1; } SourceExtractor::initSource(sources: $sources);