namespace Combodo\iTop\Form\Validator; use \Combodo\iTop\Form\Validator\Validator; /** * Description of NotEmptyValidator * * @author Guillaume Lajarige */ class NotEmptyValidator extends Validator { const VALIDATOR_NAME = 'notempty'; const DEFAULT_REGEXP = '.*\S.*'; const DEFAULT_ERROR_MESSAGE = 'TOTR: MUST NOT BE EMPTY MESSAGE'; }