You are here

class Count in Zircon Profile 8

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

@Target({"PROPERTY", "METHOD", "ANNOTATION"})

@author Bernhard Schussek <bschussek@gmail.com>

Hierarchy

  • class \Symfony\Component\Validator\Constraint
    • class \Symfony\Component\Validator\Constraints\Count

Expanded class hierarchy of Count

Related topics

2 files declare their use of Count
CountConstraint.php in core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/CountConstraint.php
Contains \Drupal\Core\Validation\Plugin\Validation\Constraint\CountConstraint.
CountValidatorTest.php in vendor/symfony/validator/Tests/Constraints/CountValidatorTest.php
3 string references to 'Count'
DbLogController::topLogMessages in core/modules/dblog/src/Controller/DbLogController.php
Shows the most frequent log messages of a given event type.
FieldItemList::getConstraints in core/lib/Drupal/Core/Field/FieldItemList.php
Gets a list of validation constraints.
Sql::getAggregationInfo in core/modules/views/src/Plugin/views/query/Sql.php
Get aggregation info for group by queries.

File

vendor/symfony/validator/Constraints/Count.php, line 23

Namespace

Symfony\Component\Validator\Constraints
View source
class Count extends Constraint {
  const TOO_FEW_ERROR = 1;
  const TOO_MANY_ERROR = 2;
  protected static $errorNames = array(
    self::TOO_FEW_ERROR => 'TOO_FEW_ERROR',
    self::TOO_MANY_ERROR => 'TOO_MANY_ERROR',
  );
  public $minMessage = 'This collection should contain {{ limit }} element or more.|This collection should contain {{ limit }} elements or more.';
  public $maxMessage = 'This collection should contain {{ limit }} element or less.|This collection should contain {{ limit }} elements or less.';
  public $exactMessage = 'This collection should contain exactly {{ limit }} element.|This collection should contain exactly {{ limit }} elements.';
  public $min;
  public $max;
  public function __construct($options = null) {
    if (null !== $options && !is_array($options)) {
      $options = array(
        'min' => $options,
        'max' => $options,
      );
    }
    parent::__construct($options);
    if (null === $this->min && null === $this->max) {
      throw new MissingOptionsException(sprintf('Either option "min" or "max" must be given for constraint %s', __CLASS__), array(
        'min',
        'max',
      ));
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Constraint::$payload public property Domain-specific data attached to a constraint.
Constraint::addImplicitGroupName public function Adds the given group if this constraint is in the Default group. 1
Constraint::CLASS_CONSTRAINT constant Marks a constraint that can be put onto classes.
Constraint::DEFAULT_GROUP constant The name of the group given to all constraints with no explicit group.
Constraint::getDefaultOption public function Returns the name of the default option. 18
Constraint::getErrorName public static function Returns the name of the given error code.
Constraint::getRequiredOptions public function Returns the name of the required options. 11
Constraint::getTargets public function Returns whether the constraint can be put onto classes, properties or both. 11
Constraint::PROPERTY_CONSTRAINT constant Marks a constraint that can be put onto properties.
Constraint::validatedBy public function Returns the name of the class that validates this constraint. 11
Constraint::__get public function Returns the value of a lazily initialized option. 1
Constraint::__set public function Sets the value of a lazily initialized option. 1
Constraint::__sleep public function Optimizes the serialized value to minimize storage space.
Count::$errorNames protected static property Maps error codes to the names of their constants. Overrides Constraint::$errorNames
Count::$exactMessage public property 1
Count::$max public property
Count::$maxMessage public property 1
Count::$min public property
Count::$minMessage public property 1
Count::TOO_FEW_ERROR constant
Count::TOO_MANY_ERROR constant
Count::__construct public function Initializes the constraint with options. Overrides Constraint::__construct