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