You are here

public function LengthValidatorTest::getThreeOrLessCharacters 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::getThreeOrLessCharacters()

File

vendor/symfony/validator/Tests/Constraints/LengthValidatorTest.php, line 52

Class

LengthValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function getThreeOrLessCharacters() {
  return array(
    array(
      12,
    ),
    array(
      '12',
    ),
    array(
      'üü',
    ),
    array(
      'éé',
    ),
    array(
      123,
    ),
    array(
      '123',
    ),
    array(
      'üüü',
    ),
    array(
      'ééé',
    ),
  );
}