From f8f036639d4ee104c5d310ccbadda2965fb7f097 Mon Sep 17 00:00:00 2001 From: Gregor Harlan Date: Tue, 21 May 2024 16:16:38 +0200 Subject: [PATCH] =?UTF-8?q?Migrate-Command:=20Errors=20nicht=20unterdr?= =?UTF-8?q?=C3=BCcken=20(#87)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/command/migrate.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/command/migrate.php b/lib/command/migrate.php index 079edb2..fd98e0e 100644 --- a/lib/command/migrate.php +++ b/lib/command/migrate.php @@ -82,9 +82,9 @@ protected function execute(InputInterface $input, OutputInterface $output): int } $io->error(sprintf('%s %d of %d migrations, aborted with "%s".', $fake ? 'Faked' : 'Executed', $countMigrated, count($paths), basename($path))); - - return Command::FAILURE; } + + return Command::FAILURE; } private function migrate($path): void