namespace Combodo\iTop\Form\Validator; use \Combodo\iTop\Form\Validator\Validator; /** * Description of MandatoryValidator * * MandatoryValidator is different than NotEmptyValidator as it doesn't apply to text input only * * @author Guillaume Lajarige */ class MandatoryValidator extends Validator { const VALIDATOR_NAME = 'mandatory'; const DEFAULT_REGEXP = '.*\S.*'; const DEFAULT_ERROR_MESSAGE = 'TOTR: MANDATORY MESSAGE'; }