mirror of
https://github.com/Respect/Validation.git
synced 2026-03-16 07:15:45 +01:00
42 lines
987 B
PHP
42 lines
987 B
PHP
--CREDITS--
|
|
William Espindola <oi@williamespindola.com.br>
|
|
--FILE--
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
require 'vendor/autoload.php';
|
|
|
|
use Respect\Validation\Exceptions\CountryCodeException;
|
|
use Respect\Validation\Exceptions\NestedValidationException;
|
|
use Respect\Validation\Validator as v;
|
|
|
|
try {
|
|
v::countryCode()->check('1');
|
|
} catch (CountryCodeException $exception) {
|
|
echo $exception->getMessage().PHP_EOL;
|
|
}
|
|
|
|
try {
|
|
v::not(v::countryCode())->check('BR');
|
|
} catch (CountryCodeException $exception) {
|
|
echo $exception->getMessage().PHP_EOL;
|
|
}
|
|
|
|
try {
|
|
v::countryCode()->assert('1');
|
|
} catch (NestedValidationException $exception) {
|
|
echo $exception->getFullMessage().PHP_EOL;
|
|
}
|
|
|
|
try {
|
|
v::not(v::countryCode())->assert('BR');
|
|
} catch (NestedValidationException $exception) {
|
|
echo $exception->getFullMessage().PHP_EOL;
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
"1" must be a valid country
|
|
"BR" must not be a valid country
|
|
- "1" must be a valid country
|
|
- "BR" must not be a valid country
|