public function LengthValidatorTest::getFourCharacters in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/validator/Tests/Constraints/LengthValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\LengthValidatorTest::getFourCharacters()
File
- vendor/
symfony/ validator/ Tests/ Constraints/ LengthValidatorTest.php, line 66
Class
Namespace
Symfony\Component\Validator\Tests\ConstraintsCode
public function getFourCharacters() {
return array(
array(
1234,
),
array(
'1234',
),
array(
'üüüü',
),
array(
'éééé',
),
);
}