jauert/validator

Very lightweight validator builder.

0.1.0 2021-07-06 13:34 UTC

This package is auto-updated.

Last update: 2025-08-15 19:16:47 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.']]