public function BlankValidatorTest::getInvalidValues in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/validator/Tests/Constraints/BlankValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\BlankValidatorTest::getInvalidValues()
File
- vendor/
symfony/ validator/ Tests/ Constraints/ BlankValidatorTest.php, line 60
Class
Namespace
Symfony\Component\Validator\Tests\ConstraintsCode
public function getInvalidValues() {
return array(
array(
'foobar',
'"foobar"',
),
array(
0,
'0',
),
array(
false,
'false',
),
array(
1234,
'1234',
),
);
}