![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-catalog/Model/Product/Price/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Product\Price; use Magento\Catalog\Api\Data\PriceUpdateResultInterface; /** * {@inheritdoc} */ class PriceUpdateResult extends \Magento\Framework\Model\AbstractExtensibleModel implements PriceUpdateResultInterface { /** * {@inheritdoc} */ public function getMessage() { return $this->getData(self::MESSAGE); } /** * {@inheritdoc} */ public function setMessage($message) { return $this->setData(self::MESSAGE, $message); } /** * {@inheritdoc} */ public function getParameters() { return $this->getData(self::PARAMETERS); } /** * {@inheritdoc} */ public function setParameters(array $parameters) { return $this->setData(self::PARAMETERS, $parameters); } /** * {@inheritdoc} */ public function getExtensionAttributes() { return $this->_getExtensionAttributes(); } /** * {@inheritdoc} */ public function setExtensionAttributes( \Magento\Catalog\Api\Data\PriceUpdateResultExtensionInterface $extensionAttributes ) { return $this->_setExtensionAttributes($extensionAttributes); } }