ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
◀ ilDoc Overview
MaxMinBase.php
Go to the documentation of this file.
1
<?
php
2
3
namespace
PhpOffice\PhpSpreadsheet\Calculation\Statistical
;
4
5
abstract
class
MaxMinBase
6
{
7
protected
static
function
datatypeAdjustmentAllowStrings
($value)
8
{
9
if
(is_bool($value)) {
10
return
(
int
) $value;
11
} elseif (is_string($value)) {
12
return
0;
13
}
14
15
return
$value;
16
}
17
}
PhpOffice\PhpSpreadsheet\Calculation\Statistical
Definition:
AggregateBase.php:3
PhpOffice\PhpSpreadsheet\Calculation\Statistical\MaxMinBase
Definition:
MaxMinBase.php:5
php
PhpOffice\PhpSpreadsheet\Calculation\Statistical\MaxMinBase\datatypeAdjustmentAllowStrings
static datatypeAdjustmentAllowStrings($value)
Definition:
MaxMinBase.php:7
libs
composer
vendor
phpoffice
phpspreadsheet
src
PhpSpreadsheet
Calculation
Statistical
MaxMinBase.php
Generated on Thu Jan 30 2025 19:01:23 for ILIAS by
1.8.13 (using
Doxyfile
)