You are here

class Count in Plug 7

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

@author Bernhard Schussek <bschussek@gmail.com>

@api

Hierarchy

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

Expanded class hierarchy of Count

1 file declares its use of Count
CountValidatorTest.php in lib/Symfony/validator/Symfony/Component/Validator/Tests/Constraints/CountValidatorTest.php

File

lib/Symfony/validator/Symfony/Component/Validator/Constraints/Count.php, line 25

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. 15
Constraint::getErrorName public static function Returns the name of the given error code.
Constraint::getRequiredOptions public function Returns the name of the required options. 7
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. 1
Constraint::__get public function Returns the value of a lazily initialized option.
Constraint::__set public function Sets the value of a lazily initialized option.
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
Count::$max public property
Count::$maxMessage public property
Count::$min public property
Count::$minMessage public property
Count::TOO_FEW_ERROR constant
Count::TOO_MANY_ERROR constant
Count::__construct public function Initializes the constraint with options. Overrides Constraint::__construct