Fenos\Notifynder\Builder\BuilderRules::isNumeric PHP Method

isNumeric() protected method

Value has to be numeric.
protected isNumeric ( $value ) : boolean
$value
return boolean
    protected function isNumeric($value)
    {
        if (!is_numeric($value)) {
            throw new InvalidArgumentException('The value Passed must be a number');
        }
        return true;
    }