catchAdmin/extend/catcher/validates/ValidateInterface.php

12 lines
191 B
PHP
Raw Permalink Normal View History

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