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