ValidateInterface.php 217 B

1234567891011121314
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher\validates;
  4. interface ValidateInterface
  5. {
  6. public function type(): string ;
  7. public function verify($value): bool ;
  8. public function message(): string ;
  9. }