namespace Combodo\iTop\Form\Validator; use \Combodo\iTop\Form\Validator\Validator; /** * Description of IntegerValidator * * @author Guillaume Lajarige */ class IntegerValidator extends Validator { const VALIDATOR_NAME = 'integer'; const DEFAULT_REGEXP = '^[0-9]+$'; const DEFAULT_ERROR_MESSAGE = 'TOTR: MUST NOT BE AN INTEGER MESSAGE'; }