public function IssnValidatorTest::getFullValidIssn

1 call to IssnValidatorTest::getFullValidIssn()
IssnValidatorTest::getValidIssn in drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Tests/Constraints/IssnValidatorTest.php

File

drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Tests/Constraints/IssnValidatorTest.php, line 58

Class

IssnValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function getFullValidIssn() {
  return array(
    array(
      '1550-7416',
    ),
    array(
      '1539-8560',
    ),
    array(
      '2156-5376',
    ),
    array(
      '1119-023X',
    ),
    array(
      '1684-5315',
    ),
    array(
      '1996-0786',
    ),
    array(
      '1684-5374',
    ),
    array(
      '1996-0794',
    ),
  );
}