Skip to content

Commit 15fdf02

Browse files
committed
Use consistent return types
1 parent 28c6919 commit 15fdf02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/php/math/BigNum.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function floatValue(): float { return (float)$this->num; }
6161
* Returns a float representing this bignum
6262
*
6363
* @deprecated Use floatValue() instead
64-
* @return double
64+
* @return float
6565
*/
6666
public function doubleValue() { return (float)$this->num; }
6767

0 commit comments

Comments
 (0)