Neos\Eel\Helper\MathHelper::max PHP Метод

max() публичный Метод

public max ( float $x = null, float $y_ = null ) : float
$x float A number
$y_ float Optional variable list of additional numbers
Результат float The largest of the given numbers (zero or more)
    public function max($x = null, $y_ = null)
    {
        $arguments = func_get_args();
        if ($arguments !== []) {
            return call_user_func_array('max', func_get_args());
        } else {
            return -INF;
        }
    }