Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
AbstractStubEntity.php
Go to the documentation of this file.
1 <?php
11 
12 abstract class AbstractStubEntity extends \Magento\ImportExport\Model\Export\AbstractEntity
13 {
14  public function __construct(
15  \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig,
16  \Magento\Store\Model\StoreManagerInterface $storeManager,
17  \Magento\ImportExport\Model\Export\Factory $collectionFactory,
18  \Magento\ImportExport\Model\ResourceModel\CollectionByPagesIteratorFactory $resourceColFactory,
19  array $data = []
20  ) {
21  parent::__construct($scopeConfig, $storeManager, $collectionFactory, $resourceColFactory, $data);
22  $this->_disabledAttrs = ['default_billing', 'default_shipping'];
23  }
24 }
__construct(\Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\ImportExport\Model\Export\Factory $collectionFactory, \Magento\ImportExport\Model\ResourceModel\CollectionByPagesIteratorFactory $resourceColFactory, array $data=[])
$storeManager