You are here

public function IpValidatorTest::getInvalidPrivateIpsV6 in Plug 7

2 calls to IpValidatorTest::getInvalidPrivateIpsV6()
IpValidatorTest::getInvalidPrivateIpsAll in lib/Symfony/validator/Symfony/Component/Validator/Tests/Constraints/IpValidatorTest.php
IpValidatorTest::getInvalidPublicIpsV6 in lib/Symfony/validator/Symfony/Component/Validator/Tests/Constraints/IpValidatorTest.php

File

lib/Symfony/validator/Symfony/Component/Validator/Tests/Constraints/IpValidatorTest.php, line 301

Class

IpValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function getInvalidPrivateIpsV6() {
  return array(
    array(
      'fdfe:dcba:9876:ffff:fdc6:c46b:bb8f:7d4c',
    ),
    array(
      'fdc6:c46b:bb8f:7d4c:fdc6:c46b:bb8f:7d4c',
    ),
    array(
      'fdc6:c46b:bb8f:7d4c:0000:8a2e:0370:7334',
    ),
  );
}