Back to Validation

Satisfies

docs/validators/Satisfies.md

3.1.11.3 KB
Original Source
<!-- SPDX-License-Identifier: MIT SPDX-FileCopyrightText: (c) Respect Project Contributors SPDX-FileContributor: Alexandre Gomes Gaigalas <[email protected]> SPDX-FileContributor: Henrique Moody <[email protected]> SPDX-FileContributor: William Espindola <[email protected]> -->

Satisfies

  • Satisfies(callable $callback)
  • Satisfies(callable $callback, mixed ...$arguments)

Validates the input using the return of a given callable.

php
v::satisfies(fn (int $input): bool => $input % 5 === 0,)->assert(10);
// Validation passes successfully

Templates

Satisfies::TEMPLATE_STANDARD

ModeTemplate
default{{subject}} must be valid
inverted{{subject}} must not be valid

Template placeholders

PlaceholderDescription
subjectThe validated input or the custom validator name (if specified).

Categorization

  • Callables

Changelog

VersionDescription
3.0.0Renamed to Satisfies
0.3.9Created as Callback

See Also