mirror of
https://github.com/wiosna-dev/common-library.git
synced 2026-03-12 09:31:51 +01:00
Fix "floor(): Argument #1 ($num) must be of type int|float, string given" TypeError while running test of Meritoo\Common\Utilities\Miscellaneous::isDecimal()
This commit is contained in:
@@ -729,7 +729,7 @@ class Miscellaneous
|
|||||||
*/
|
*/
|
||||||
public static function isDecimal($value)
|
public static function isDecimal($value)
|
||||||
{
|
{
|
||||||
return is_scalar($value) && floor($value) !== (float)$value;
|
return is_scalar($value) && is_numeric($value)&&floor($value) !== (float)$value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user