catchAdmin/extend/catcher/validates/ValidateInterface.php
2019-12-06 09:17:40 +08:00

12 lines
199 B
PHP

<?php
namespace catcher\validates;
interface ValidateInterface
{
public function type(): string ;
public function verify($value, $field): bool ;
public function message(): string ;
}