From 60801d8b1c0ae6611bd2a67fdae011431fc161fa Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 27 Apr 2022 20:31:40 +0200 Subject: [PATCH] Fix strict comparison Signed-off-by: Joas Schilling --- core/Command/Db/Migrations/GenerateCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Command/Db/Migrations/GenerateCommand.php b/core/Command/Db/Migrations/GenerateCommand.php index 9790a96a0fd..a4e9bd63c89 100644 --- a/core/Command/Db/Migrations/GenerateCommand.php +++ b/core/Command/Db/Migrations/GenerateCommand.php @@ -154,7 +154,7 @@ class {{classname}} extends SimpleMigrationStep { if ($fullVersion) { [$major, $minor] = explode('.', $fullVersion); - $shouldVersion = (int)$major * 1000 + (int)$minor; + $shouldVersion = (string) ((int)$major * 1000 + (int)$minor); if ($version !== $shouldVersion) { $output->writeln('Unexpected migration version for current version: ' . $fullVersion . ''); $output->writeln(' - Pattern: XYYY '); -- 2.39.5