public function IpValidatorTest::getInvalidPrivateIpsV4 in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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
Namespace
Symfony\Component\Validator\Tests\ConstraintsCode
public function getInvalidPrivateIpsV4() {
return array(
array(
'10.0.0.0',
),
array(
'172.16.0.0',
),
array(
'192.168.1.0',
),
);
}