catchAdmin/extend/catcher/validates/ValidateInterface.php
JaguarJack 94c430f491 update
2020-11-29 09:29:14 +08:00

14 lines
217 B
PHP

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