From 2ffcc08332632cddc64236917c35659939ec4f97 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Mon, 25 Apr 2022 16:49:23 +0200 Subject: [PATCH] Fix type fixing 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 f35e49126a1..9790a96a0fd 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 = $major * 1000 + $minor; + $shouldVersion = (int)$major * 1000 + (int)$minor; if ($version !== $shouldVersion) { $output->writeln('Unexpected migration version for current version: ' . $fullVersion . ''); $output->writeln(' - Pattern: XYYY ');