You are here

public function LengthValidatorTest::getFiveOrMoreCharacters in Zircon Profile 8.0

Same name and namespace in other branches
  1. 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

LengthValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function getFiveOrMoreCharacters() {
  return array(
    array(
      12345,
    ),
    array(
      '12345',
    ),
    array(
      'üüüüü',
    ),
    array(
      'ééééé',
    ),
    array(
      123456,
    ),
    array(
      '123456',
    ),
    array(
      'üüüüüü',
    ),
    array(
      'éééééé',
    ),
  );
}