123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Quote\Model\Quote;
- class Config
- {
- /**
- * @var \Magento\Catalog\Model\Attribute\Config
- */
- private $_attributeConfig;
- /**
- * @param \Magento\Catalog\Model\Attribute\Config $attributeConfig
- */
- public function __construct(\Magento\Catalog\Model\Attribute\Config $attributeConfig)
- {
- $this->_attributeConfig = $attributeConfig;
- }
- /**
- * @return array
- */
- public function getProductAttributes()
- {
- return $this->_attributeConfig->getAttributeNames('quote_item');
- }
- }
|