Overtrue\Validation\Validator::validateNumeric PHP Méthode

validateNumeric() protected méthode

Validate that an attribute is numeric.
protected validateNumeric ( string $attribute, mixed $value ) : boolean
$attribute string
$value mixed
Résultat boolean
    protected function validateNumeric($attribute, $value)
    {
        return is_numeric($value);
    }
Validator