docs/validators/Satisfies.md
Satisfies(callable $callback)Satisfies(callable $callback, mixed ...$arguments)Validates the input using the return of a given callable.
v::satisfies(fn (int $input): bool => $input % 5 === 0,)->assert(10);
// Validation passes successfully
Satisfies::TEMPLATE_STANDARD| Mode | Template |
|---|---|
default | {{subject}} must be valid |
inverted | {{subject}} must not be valid |
| Placeholder | Description |
|---|---|
subject | The validated input or the custom validator name (if specified). |
| Version | Description |
|---|---|
| 3.0.0 | Renamed to Satisfies |
| 0.3.9 | Created as Callback |