You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

RegRules.php 232B

2 years ago
123456789101112131415161718
  1. <?php
  2. namespace crmeb\form\validate;
  3. /**
  4. * Class RegRules\validate
  5. */
  6. class RegRules extends BaseRules
  7. {
  8. /**
  9. * @return string
  10. */
  11. public static function getType(): string
  12. {
  13. return 'regexp';
  14. }
  15. }