You are here

protected static property Ip::$versions in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/validator/Constraints/Ip.php \Symfony\Component\Validator\Constraints\Ip::versions

File

vendor/symfony/validator/Constraints/Ip.php, line 47

Class

Ip
Validates that a value is a valid IP address.

Namespace

Symfony\Component\Validator\Constraints

Code

protected static $versions = array(
  self::V4,
  self::V6,
  self::ALL,
  self::V4_NO_PRIV,
  self::V6_NO_PRIV,
  self::ALL_NO_PRIV,
  self::V4_NO_RES,
  self::V6_NO_RES,
  self::ALL_NO_RES,
  self::V4_ONLY_PUBLIC,
  self::V6_ONLY_PUBLIC,
  self::ALL_ONLY_PUBLIC,
);