Neos\Eel\Helper\TypeHelper::isNumeric PHP Метод

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

Is the given variable numeric.
public isNumeric ( mixed $variable ) : boolean
$variable mixed
Результат boolean
    public function isNumeric($variable)
    {
        return is_numeric($variable);
    }