/home/techb158/exp.abdallabala.com/vendor/respect/validation/tests/integration/rules
Edit: /home/techb158/exp.abdallabala.com/vendor/respect/validation/tests/integration/rules/alpha_4.phpt (502B)
--FILE--
check('a');
} catch (AlphaException $e) {
echo $e->getMainMessage().PHP_EOL;
}
try {
v::not(v::alpha())->assert('b');
} catch (AllOfException $e) {
echo $e->getFullMessage().PHP_EOL;
}
?>
--EXPECTF--
"a" must not contain letters (a-z)
- "b" must not contain letters (a-z)