| Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-quote/Model/Cart/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/module-quote/Model/Cart/TotalsAdditionalData.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Quote\Model\Cart;
use Magento\Quote\Api\Data\TotalsAdditionalDataInterface;
use Magento\Framework\Model\AbstractExtensibleModel;
/**
* @inheritDoc
*/
class TotalsAdditionalData extends AbstractExtensibleModel implements TotalsAdditionalDataInterface
{
/**
* Retrieve existing extension attributes object or create a new one.
*
* @return \Magento\Quote\Api\Data\TotalsAdditionalDataExtensionInterface|null
*/
public function getExtensionAttributes()
{
return $this->_getExtensionAttributes();
}
/**
* Set an extension attributes object.
*
* @param \Magento\Quote\Api\Data\TotalsAdditionalDataExtensionInterface $extensionAttributes
* @return void
*/
public function setExtensionAttributes(
\Magento\Quote\Api\Data\TotalsAdditionalDataExtensionInterface $extensionAttributes
) {
$this->_setExtensionAttributes($extensionAttributes);
}
}