/home/techb158/exp.abdallabala.com/vendor/respect/validation/tests/integration/rules
Edit: /home/techb158/exp.abdallabala.com/vendor/respect/validation/tests/integration/rules/numeric_4.phpt (487B)
--FILE--
check('1');
} catch (NumericException $e) {
echo $e->getMainMessage().PHP_EOL;
}
try {
v::not(v::numeric())->assert('1');
} catch (AllOfException $e) {
echo $e->getFullMessage().PHP_EOL;
}
?>
--EXPECTF--
"1" must not be numeric
- "1" must not be numeric