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.

BoolRules.php 246B

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