You are here

public function LocaleValidatorTest::getValidLocales in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/validator/Tests/Constraints/LocaleValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\LocaleValidatorTest::getValidLocales()

File

vendor/symfony/validator/Tests/Constraints/LocaleValidatorTest.php, line 62

Class

LocaleValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function getValidLocales() {
  return array(
    array(
      'en',
    ),
    array(
      'en_US',
    ),
    array(
      'pt',
    ),
    array(
      'pt_PT',
    ),
    array(
      'zh_Hans',
    ),
  );
}