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.

FloatRules.php 246B

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