Skip to content

Commit

Permalink
Fix Psalm nits
Browse files Browse the repository at this point in the history
  • Loading branch information
paragonie-security committed May 9, 2019
1 parent d30e880 commit 5d45f89
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Core32/Int64.php
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@ public function multiplyLong(array $a, array $b, $baseLog2 = 16)
{
$a_l = count($a);
$b_l = count($b);
/** @var array<int, int> $r */
$r = array_fill(0, $a_l + $b_l + 1, 0);
$base = 1 << $baseLog2;
for ($i = 0; $i < $a_l; ++$i) {
Expand Down

0 comments on commit 5d45f89

Please sign in to comment.