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.

IntRules.php 234B

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