bf050ac58dd18b65b34bf44c96674e8d5f073af0
[yaffs-website] / vendor / symfony / validator / Constraints / Range.php
1 <?php
2
3 /*
4  * This file is part of the Symfony package.
5  *
6  * (c) Fabien Potencier <fabien@symfony.com>
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 namespace Symfony\Component\Validator\Constraints;
13
14 use Symfony\Component\Validator\Constraint;
15 use Symfony\Component\Validator\Exception\MissingOptionsException;
16
17 /**
18  * @Annotation
19  * @Target({"PROPERTY", "METHOD", "ANNOTATION"})
20  *
21  * @author Bernhard Schussek <bschussek@gmail.com>
22  */
23 class Range extends Constraint
24 {
25     const INVALID_CHARACTERS_ERROR = 'ad9a9798-7a99-4df7-8ce9-46e416a1e60b';
26     const TOO_HIGH_ERROR = '2d28afcb-e32e-45fb-a815-01c431a86a69';
27     const TOO_LOW_ERROR = '76454e69-502c-46c5-9643-f447d837c4d5';
28
29     /**
30      * @deprecated Deprecated since version 2.8, to be removed in 3.0. Use
31      *             {@link INVALID_CHARACTERS_ERROR} instead.
32      */
33     const INVALID_VALUE_ERROR = self::INVALID_CHARACTERS_ERROR;
34
35     /**
36      * @deprecated Deprecated since version 2.8, to be removed in 3.0. Use
37      *             {@link TOO_HIGH_ERROR} instead.
38      */
39     const BEYOND_RANGE_ERROR = self::TOO_HIGH_ERROR;
40
41     /**
42      * @deprecated Deprecated since version 2.8, to be removed in 3.0. Use
43      *             {@link TOO_LOW_ERROR} instead.
44      */
45     const BELOW_RANGE_ERROR = self::TOO_LOW_ERROR;
46
47     protected static $errorNames = array(
48         self::INVALID_CHARACTERS_ERROR => 'INVALID_CHARACTERS_ERROR',
49         self::TOO_HIGH_ERROR => 'TOO_HIGH_ERROR',
50         self::TOO_LOW_ERROR => 'TOO_LOW_ERROR',
51     );
52
53     public $minMessage = 'This value should be {{ limit }} or more.';
54     public $maxMessage = 'This value should be {{ limit }} or less.';
55     public $invalidMessage = 'This value should be a valid number.';
56     public $min;
57     public $max;
58
59     public function __construct($options = null)
60     {
61         parent::__construct($options);
62
63         if (null === $this->min && null === $this->max) {
64             throw new MissingOptionsException(sprintf('Either option "min" or "max" must be given for constraint %s', __CLASS__), array('min', 'max'));
65         }
66     }
67 }