blob: 85aca30942bf4bb41fe4622fef3fc20731ade2cd (
plain)
1
2
3
4
5
6
7
8
9
|
<?php
namespace Askonomm\Hird\Validators;
interface Validator
{
public static function validate(mixed $value, mixed $modifier = null): bool;
public static function composeError(string $field, mixed $modifier = null): string;
}
|