public function RegexValidatorTest::getInvalidValues

File

drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Tests/Constraints/RegexValidatorTest.php, line 100

Class

RegexValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function getInvalidValues() {
  return array(
    array(
      'abcd',
    ),
    array(
      '090foo',
    ),
  );
}