Sometimes.php 522 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher\validates;
  4. class Sometimes implements ValidateInterface
  5. {
  6. public function type(): string
  7. {
  8. // TODO: Implement type() method.
  9. return 'sometimes';
  10. }
  11. public function verify($value): bool
  12. {
  13. // TODO: Implement verify() method.
  14. if ($value) {
  15. return true;
  16. }
  17. return false;
  18. }
  19. public function message(): string
  20. {
  21. // TODO: Implement message() method.
  22. return '';
  23. }
  24. }