You are here

public function IpValidatorTest::getInvalidReservedIpsV4 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::getInvalidReservedIpsV4()
2 calls to IpValidatorTest::getInvalidReservedIpsV4()
IpValidatorTest::getInvalidPublicIpsV4 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 217

Class

IpValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function getInvalidReservedIpsV4() {
  return array(
    array(
      '0.0.0.0',
    ),
    array(
      '224.0.0.1',
    ),
    array(
      '255.255.255.255',
    ),
  );
}