jauert/validator

Very lightweight validator builder.

0.1.0 2021-07-06 13:34 UTC

This package is auto-updated.

Last update: 2025-09-15 19:29:19 UTC


README

Usage

$validator = new Validator();
$validator->notBlank('test', 'Empty spaces are not allowed.');
$validator->validate(['test' => ' ']);

// will result in ['test' => ['Empty spaces are not allowed.']]