17 lines
351 B
PHP
17 lines
351 B
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical;
|
|
|
|
abstract class MaxMinBase
|
|
{
|
|
protected static function datatypeAdjustmentAllowStrings(mixed $value): mixed
|
|
{
|
|
if (is_bool($value)) {
|
|
return (int) $value;
|
|
} elseif (is_string($value)) {
|
|
return 0;
|
|
}
|
|
|
|
return $value;
|
|
}
|
|
}
|