respect-validation/docs/rules/Callback.md
Henrique Moody 543b97309a
Fix broken documentation links
Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2024-02-19 14:20:39 +01:00

470 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

Categorization

  • Callables

Changelog

Version Description
0.3.9 Created

See also: