Fixed type issues.

This commit is contained in:
Pachira 2024-12-22 02:05:46 +00:00
parent 004156712b
commit 416c716b2e
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
0.2410.830201 0.2410.830205

View file

@ -73,6 +73,6 @@ class IntegerBaseConverter {
$output = $output * $this->base + $pos; $output = $output * $this->base + $pos;
} }
return $output; return (int)$output;
} }
} }