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.

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