respect-validation/docs/rules/Callback.md
Henrique Moody 10df3211f5
Add "Categorization" section to rule documentations
Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2019-05-11 19:16:21 +02:00

444 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: