class GroupSequence

Annotation for group sequences

@author Bernhard Schussek <bschussek@gmail.com>

@api

Hierarchy

Expanded class hierarchy of GroupSequence

1 file declares its use of GroupSequence
AnnotationLoader.php in drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Mapping/Loader/AnnotationLoader.php

File

drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Constraints/GroupSequence.php, line 23

Namespace

Symfony\Component\Validator\Constraints
View source
class GroupSequence {

  /**
   * The members of the sequence
   * @var array
   */
  public $groups;
  public function __construct(array $groups) {
    $this->groups = $groups['value'];
  }

}

Members

Namesort descending Modifiers Type Description Overrides
GroupSequence::$groups public property The members of the sequence
GroupSequence::__construct public function