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