You are here

public function IpValidatorTest::getInvalidReservedIpsV6 in Plug 7

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

File

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

Class

IpValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function getInvalidReservedIpsV6() {

  // Quoting after official filter documentation:
  // "FILTER_FLAG_NO_RES_RANGE = This flag does not apply to IPv6 addresses."
  // Full description: http://php.net/manual/en/filter.filters.flags.php
  return $this
    ->getInvalidIpsV6();
}