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