respect-validation/tests/integration/do_not_rely_on_nested_validation_exception_interface_for_check.phpt
Henrique Moody 97b243daa1
Allow building rules using prefixes
Although helpful, the changes in the Min, Max, and Length rules made
using those rules more verbose. This commit will simplify their use by
allowing users to use them as prefixes.

Because I was creating prefixes for those rules, I made other cool
prefixes. Doing that is scary because it will generate more code to
support, and I would have liked to avoid that. However, that's a
valuable addition, and it's worth the risk.

I might reconsider that in the future, but for now, that looks like a
good idea.

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2024-03-24 16:58:24 +01:00

18 lines
422 B
PHP

--TEST--
Do not rely on nested validation exception interface for check
--FILE--
<?php
declare(strict_types=1);
require 'vendor/autoload.php';
use Respect\Validation\Validator;
exceptionMessage(
static fn () => Validator::alnum('__')->lengthBetween(1, 15)->noWhitespace()->check('really messed up screen#name')
);
?>
--EXPECT--
"really messed up screen#name" must contain only letters (a-z), digits (0-9) and "__"