Fixed type issues.
This commit is contained in:
parent
004156712b
commit
416c716b2e
2 changed files with 2 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
0.2410.830201
|
0.2410.830205
|
||||||
|
|
|
@ -73,6 +73,6 @@ class IntegerBaseConverter {
|
||||||
$output = $output * $this->base + $pos;
|
$output = $output * $this->base + $pos;
|
||||||
}
|
}
|
||||||
|
|
||||||
return $output;
|
return (int)$output;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue