From 3af6dcb1caf6645c2b117a1c5aed23b54366a60b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Thu, 25 Jun 2020 16:10:39 +0200 Subject: [PATCH] Use strong comparison MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- lib/Command/MigrateAlpha3.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Command/MigrateAlpha3.php b/lib/Command/MigrateAlpha3.php index 2ec0e337..a794a91c 100644 --- a/lib/Command/MigrateAlpha3.php +++ b/lib/Command/MigrateAlpha3.php @@ -273,7 +273,7 @@ class MigrateAlpha3 extends Base { $output->write('Found ' . count($fullContent) . ' entries'); $m = $copied = 0; foreach ($fullContent as $entry) { - if ($m % 50 == 0) { + if ($m % 50 === 0) { $output->write('.'); }