You are here

public function IpValidatorTest::getInvalidPrivateIpsV6 in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/validator/Tests/Constraints/IpValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\IpValidatorTest::getInvalidPrivateIpsV6()
2 calls to IpValidatorTest::getInvalidPrivateIpsV6()
IpValidatorTest::getInvalidPrivateIpsAll in vendor/symfony/validator/Tests/Constraints/IpValidatorTest.php
IpValidatorTest::getInvalidPublicIpsV6 in vendor/symfony/validator/Tests/Constraints/IpValidatorTest.php

File

vendor/symfony/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',
    ),
  );
}