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.

ArrRules.php 243B

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