Overtrue\Validation\Validator::validateNumeric PHP Method

validateNumeric() protected method

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