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