fix strict equality issue
authordemeritcowboy <demeritcowboy@hotmail.com>
Fri, 3 Dec 2021 14:56:37 +0000 (09:56 -0500)
committerdemeritcowboy <demeritcowboy@hotmail.com>
Fri, 3 Dec 2021 14:56:37 +0000 (09:56 -0500)
tests/phpunit/api/v4/Action/DateTest.php

index 4361d17dd3bc609909c7702e3e0436deeeac740c..255534510c91e89b5be40c21f49870c3e417012d 100644 (file)
@@ -71,7 +71,7 @@ class DateTest extends UnitTestCase {
 
     // Avoid problems with `strtotime(<date arithmetic expression>)` giving
     // impossible dates like April 31 which roll over and then don't match.
-    $thisMonth = date('m');
+    $thisMonth = (int) date('m');
     $lastMonth = ($thisMonth === 1 ? 12 : $thisMonth - 1);
     $nextMonth = ($thisMonth === 12 ? 1 : $thisMonth + 1);
     $lastMonthsYear = ($thisMonth === 1 ? date('Y') - 1 : date('Y'));