* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ class Choice extends \Symfony\Component\Validator\Constraint { public $choices; public $callback; public $multiple = false; public $min = null; public $max = null; public $message = 'Symfony.Validator.Choice.message'; public $minMessage = 'Symfony.Validator.Choice.minMessage'; public $maxMessage = 'Symfony.Validator.Choice.maxMessage'; /** * {@inheritDoc} */ public function defaultOption() { return 'choices'; } }