1: <?php
2:
3: /**
4: * @copyright Copyright (c) 2009-2022 ThemeCatcher (https://www.themecatcher.net)
5: */
6: interface Quform_Validator_Interface
7: {
8: public function isValid($value);
9: public static function getMessageTemplates();
10: public static function getDefaultConfig();
11: }
12: