mirror of
https://github.com/Respect/Validation.git
synced 2026-03-16 07:15:45 +01:00
412 B
412 B
Callback
Callback(callable $callback)
Validates the input using the return of a given callable.
v::callback(
function (int $input): bool {
return $input + ($input / 2) == 15;
}
)->validate(10); // true
Changelog
| Version | Description |
|---|---|
| 0.3.9 | Created |
See also: