You are here

public property Uuid::$versions in Zircon Profile 8

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

Array of allowed versions (see version constants above).

All UUID versions are allowed by default

Type: int[]

File

vendor/symfony/validator/Constraints/Uuid.php, line 70

Class

Uuid
@author Colin O'Dell <colinodell@gmail.com> @author Bernhard Schussek <bschussek@gmail.com>

Namespace

Symfony\Component\Validator\Constraints

Code

public $versions = array(
  self::V1_MAC,
  self::V2_DCE,
  self::V3_MD5,
  self::V4_RANDOM,
  self::V5_SHA1,
);