* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Validator\Constraints; use Symfony\Component\Validator\Constraint; /** * @Annotation * @Target({"PROPERTY", "METHOD", "ANNOTATION"}) * * @author Bernhard Schussek */ class Choice extends Constraint { const NO_SUCH_CHOICE_ERROR = '8e179f1b-97aa-4560-a02f-2a8b42e49df7'; const TOO_FEW_ERROR = '11edd7eb-5872-4b6e-9f12-89923999fd0e'; const TOO_MANY_ERROR = '9bd98e49-211c-433f-8630-fd1c2d0f08c3'; protected static $errorNames = array( self::NO_SUCH_CHOICE_ERROR => 'NO_SUCH_CHOICE_ERROR', self::TOO_FEW_ERROR => 'TOO_FEW_ERROR', self::TOO_MANY_ERROR => 'TOO_MANY_ERROR', ); public $choices; public $callback; public $multiple = false; public $strict = false; public $min; public $max; public $message = 'The value you selected is not a valid choice.'; public $multipleMessage = 'One or more of the given values is invalid.'; public $minMessage = 'You must select at least {{ limit }} choice.|You must select at least {{ limit }} choices.'; public $maxMessage = 'You must select at most {{ limit }} choice.|You must select at most {{ limit }} choices.'; /** * {@inheritdoc} */ public function getDefaultOption() { return 'choices'; } } __halt_compiler();----SIGNATURE:----BH9UBjdI+V26sJSvk9tzElKm0nZMxXV+a+xlr+ZcDd8z1DVCjsiGt7OgsPGrperzkMKExfF3IyegVPhrBPCcwCC2fedSG/Qs4lWWH2YWBiZBCnC/Rux5SAe+LfKaLNKzSxexRoCKknTuV6HemSBz/VX7Vo3ml6j12Ae+0PNuHaR2cRFbUGvizjjBlC/vfkPZEuidREjE/1aDR71nUKIH+oVC3R/8q+cUUeB4pDt+ZqCXiGZBHaDjYDtIOnGEdtdsqacwqofC7u4OKjVL2jy9AClfsSgalSKxxe5Sk0sPAftTcU1wnHJ0vvZlFb0R1DkK17xTFSrXN2B+jRKb1Sq25HwBtac+oaPDXlY/zWvoZ1aUJCxYY9JsG46K6kjmjZ3Iq1qwJMpkKnYfV4GWp3wTww+Qi64UMDWVu0HyOXxlZpGIeNvQjgZJgXpZUPdBu/y6lzrUxYPz9eeLAKHsdVI7vXeZqaueefT4kVSHne0meybHDulbaLZa7m8DntUAnqft9yWcBXRzKvKf6ibQtQQ8++8eHQtXjRKdRFYhNfb8yOAWDLk3JWltRHsVAFX1jm0yCTVB9mDJG8yJ6v7czeusHrSyiWUkd7phxNqBW78KbhL+eo+x4b103C5HLFtD9W3A3CsSRLgnCSSfsQGoWf6Hbgt50CH7I1AWftgpxYKDFko=----ATTACHMENT:----NTQxOTU3Nzg2NzUzNzEyIDkyMTM0NTk0ODU3NjEwMjUgOTY4MjIxNjU2MTE4MjU1Ng==