You are here

class Range 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\Range

Expanded class hierarchy of Range

6 files declare their use of Range
AllValidatorTest.php in lib/Symfony/validator/Symfony/Component/Validator/Tests/Constraints/AllValidatorTest.php
AnnotationLoaderTest.php in lib/Symfony/validator/Symfony/Component/Validator/Tests/Mapping/Loader/AnnotationLoaderTest.php
CollectionValidatorTest.php in lib/Symfony/validator/Symfony/Component/Validator/Tests/Constraints/CollectionValidatorTest.php
RangeValidatorTest.php in lib/Symfony/validator/Symfony/Component/Validator/Tests/Constraints/RangeValidatorTest.php
XmlFileLoaderTest.php in lib/Symfony/validator/Symfony/Component/Validator/Tests/Mapping/Loader/XmlFileLoaderTest.php

... See full list

File

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

Namespace

Symfony\Component\Validator\Constraints
View source
class Range extends Constraint {
  const INVALID_VALUE_ERROR = 1;
  const BEYOND_RANGE_ERROR = 2;
  const BELOW_RANGE_ERROR = 3;
  protected static $errorNames = array(
    self::INVALID_VALUE_ERROR => 'INVALID_VALUE_ERROR',
    self::BEYOND_RANGE_ERROR => 'BEYOND_RANGE_ERROR',
    self::BELOW_RANGE_ERROR => 'BELOW_RANGE_ERROR',
  );
  public $minMessage = 'This value should be {{ limit }} or more.';
  public $maxMessage = 'This value should be {{ limit }} or less.';
  public $invalidMessage = 'This value should be a valid number.';
  public $min;
  public $max;
  public function __construct($options = null) {
    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.
Range::$errorNames protected static property Maps error codes to the names of their constants Overrides Constraint::$errorNames
Range::$invalidMessage public property
Range::$max public property
Range::$maxMessage public property
Range::$min public property
Range::$minMessage public property
Range::BELOW_RANGE_ERROR constant
Range::BEYOND_RANGE_ERROR constant
Range::INVALID_VALUE_ERROR constant
Range::__construct public function Initializes the constraint with options. Overrides Constraint::__construct