123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- /**
- * Constraint option
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Validator\Constraint;
- class Option implements \Magento\Framework\Validator\Constraint\OptionInterface
- {
- /**
- * @var int|string|array
- */
- protected $_value;
- /**
- * Set value
- *
- * @param int|string|array $value
- */
- public function __construct($value)
- {
- $this->_value = $value;
- }
- /**
- * Get value
- *
- * @return int|string|array
- */
- public function getValue()
- {
- return $this->_value;
- }
- }
|