17 lines
339 B
PHP
17 lines
339 B
PHP
<?php
|
|
|
|
class MinMaxStat
|
|
{
|
|
public static function __callStatic(string $method, array $arr) : mixed
|
|
{
|
|
switch ($method) {
|
|
case 'min':
|
|
return min($arr);
|
|
case 'max':
|
|
return max($arr);
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
|
|
} |