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