NAME

Syccess::Validator::IsNumber - A validator to check if value is a number

VERSION

version 0.101

SYNOPSIS

Syccess->new(
  fields => [
    foo => [ is_number => 1 ],
    bar => [ is_number => { message => 'This is not cool!' } ],
  ],
);

DESCRIPTION

This simple validator only checks if the given value is a number (using looks_like_number of Scalar::Util). The parameter given will not be used, but as usual you can override the error message by given message.

ATTRIBUTES

message

This contains the error message or the format for the error message generation. See "validator_message" in Syccess::Error.

SUPPORT

IRC

Join #sycontent on irc.perl.org. Highlight Getty for fast reaction :).

Repository

http://github.com/SyContent/Syccess
Pull request and additional contributors are welcome

Issue Tracker

http://github.com/SyContent/Syccess/issues

AUTHOR

Torsten Raudssus <torsten@raudss.us>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Torsten Raudssus.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.