![]() 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\CostInterface; /** * Product Cost DTO. */ class Cost extends \Magento\Framework\Model\AbstractExtensibleModel implements CostInterface { /** * {@inheritdoc} */ public function setCost($cost) { return $this->setData(self::COST, $cost); } /** * {@inheritdoc} */ public function getCost() { return $this->getData(self::COST); } /** * {@inheritdoc} */ public function setStoreId($storeId) { return $this->setData(self::STORE_ID, $storeId); } /** * {@inheritdoc} */ public function getStoreId() { return $this->getData(self::STORE_ID); } /** * {@inheritdoc} */ public function setSku($sku) { return $this->setData(self::SKU, $sku); } /** * {@inheritdoc} */ public function getSku() { return $this->getData(self::SKU); } /** * {@inheritdoc} */ public function getExtensionAttributes() { return $this->_getExtensionAttributes(); } /** * {@inheritdoc} */ public function setExtensionAttributes(\Magento\Catalog\Api\Data\CostExtensionInterface $extensionAttributes) { return $this->_setExtensionAttributes($extensionAttributes); } }