Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 469 Bytes

Callback.md

File metadata and controls

31 lines (22 loc) · 469 Bytes

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;
    }
)->isValid(10); // true

Categorization

  • Callables

Changelog

Version Description
0.3.9 Created

See also: