You are here

public function IpValidatorTest::getInvalidPrivateIpsV4 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::getInvalidPrivateIpsV4()
2 calls to IpValidatorTest::getInvalidPrivateIpsV4()
IpValidatorTest::getInvalidPrivateIpsAll in vendor/symfony/validator/Tests/Constraints/IpValidatorTest.php
IpValidatorTest::getInvalidPublicIpsV4 in vendor/symfony/validator/Tests/Constraints/IpValidatorTest.php

File

vendor/symfony/validator/Tests/Constraints/IpValidatorTest.php, line 191

Class

IpValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function getInvalidPrivateIpsV4() {
  return array(
    array(
      '10.0.0.0',
    ),
    array(
      '172.16.0.0',
    ),
    array(
      '192.168.1.0',
    ),
  );
}