12 lines
199 B
PHP
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 ;
|
|
}
|