Files
php_8/methods/minmax_static.php
2022-05-03 17:52:13 +03:00

16 lines
305 B
PHP

<?php
class MinMax
{
public static function __callStatic(string $method, array $arr)
{
switch($method) {
case 'min':
return min($arr);
case 'max':
return max($arr);
default:
return null;
}
}
}