Resources/PhpOffice/PhpSpreadsheet/Calculation/Statistical/MaxMinBase.php
Dennis Eichhorn 7e0153ea0f perm change
2023-03-25 22:32:11 +00:00

18 lines
338 B
PHP
Executable File

<?php
namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical;
abstract class MaxMinBase
{
protected static function datatypeAdjustmentAllowStrings($value)
{
if (is_bool($value)) {
return (int) $value;
} elseif (is_string($value)) {
return 0;
}
return $value;
}
}