![]() 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/cartforge.co/vendor/magento/module-quote/Model/Cart/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\Cart; use Magento\Quote\Api\Data\TotalSegmentInterface; use Magento\Framework\Model\AbstractExtensibleModel; /** * Extensible Cart Totals * * @codeCoverageIgnore */ class TotalSegment extends AbstractExtensibleModel implements TotalSegmentInterface { /** * {@inheritdoc} */ public function getCode() { return $this->getData(self::CODE); } /** * {@inheritdoc} */ public function setCode($code) { return $this->setData(self::CODE, $code); } /** * {@inheritdoc} */ public function getValue() { return $this->getData(self::VALUE); } /** * {@inheritdoc} */ public function setValue($value) { return $this->setData(self::VALUE, $value); } /** * {@inheritdoc} */ public function getTitle() { return $this->getData(self::TITLE); } /** * {@inheritdoc} */ public function setTitle($title = null) { return $this->setData(self::TITLE, $title); } /** * {@inheritdoc} */ public function getArea() { return $this->getData(self::AREA); } /** * {@inheritdoc} */ public function setArea($area = null) { return $this->setData(self::AREA, $area); } /** * {@inheritdoc} */ public function getExtensionAttributes() { return $this->_getExtensionAttributes(); } /** * {@inheritdoc} */ public function setExtensionAttributes( \Magento\Quote\Api\Data\TotalSegmentExtensionInterface $extensionAttributes ) { return $this->_setExtensionAttributes($extensionAttributes); } }