You are here

public function IpValidatorTest::getInvalidReservedIpsV6 in Zircon Profile 8

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

File

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