From 5d45f89d7872ce06da14e2607071bb3f828854ef Mon Sep 17 00:00:00 2001 From: Paragon Initiative Enterprises Date: Thu, 9 May 2019 15:17:00 -0400 Subject: [PATCH] Fix Psalm nits --- src/Core32/Int64.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Core32/Int64.php b/src/Core32/Int64.php index c620237f..507a9875 100644 --- a/src/Core32/Int64.php +++ b/src/Core32/Int64.php @@ -330,6 +330,7 @@ public function multiplyLong(array $a, array $b, $baseLog2 = 16) { $a_l = count($a); $b_l = count($b); + /** @var array $r */ $r = array_fill(0, $a_l + $b_l + 1, 0); $base = 1 << $baseLog2; for ($i = 0; $i < $a_l; ++$i) {