catchAdmin/extend/catcher/validates/ValidateInterface.php

12 lines
199 B
PHP
Raw Normal View History

2019-12-06 09:17:40 +08:00
<?php
namespace catcher\validates;
interface ValidateInterface
{
public function type(): string ;
public function verify($value, $field): bool ;
public function message(): string ;
}