12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Eav\Model\Entity\Attribute;
- /**
- * @codeCoverageIgnore
- */
- class ValidationRule extends \Magento\Framework\Model\AbstractModel implements
- \Magento\Eav\Api\Data\AttributeValidationRuleInterface
- {
- /**
- * {@inheritdoc}
- */
- public function getKey()
- {
- return $this->getData(self::KEY);
- }
- /**
- * {@inheritdoc}
- */
- public function getValue()
- {
- return $this->getData(self::VALUE);
- }
- /**
- * Set object key
- *
- * @param string $key
- * @return $this
- */
- public function setKey($key)
- {
- return $this->setData(self::KEY, $key);
- }
- /**
- * Set object value
- *
- * @param string $value
- * @return $this
- */
- public function setValue($value)
- {
- return $this->setData(self::VALUE, $value);
- }
- }
|