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.

DateRules.php 243B

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