mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-18 07:58:41 +00:00
34 lines
716 B
PHP
34 lines
716 B
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheet\Calculation\Engineering;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Exception;
|
|
use PhpOffice\PhpSpreadsheet\Calculation\Information\ExcelError;
|
|
|
|
class EngineeringValidations
|
|
{
|
|
/**
|
|
* @param mixed $value
|
|
*/
|
|
public static function validateFloat($value): float
|
|
{
|
|
if (!\is_numeric($value)) {
|
|
throw new Exception(ExcelError::VALUE());
|
|
}
|
|
|
|
return (float) $value;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $value
|
|
*/
|
|
public static function validateInt($value): int
|
|
{
|
|
if (!\is_numeric($value)) {
|
|
throw new Exception(ExcelError::VALUE());
|
|
}
|
|
|
|
return (int) \floor((float) $value);
|
|
}
|
|
}
|