You are here

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

File

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

Class

LengthValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function getFourCharacters() {
  return array(
    array(
      1234,
    ),
    array(
      '1234',
    ),
    array(
      'üüüü',
    ),
    array(
      'éééé',
    ),
  );
}