1234567891011121314151617181920 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Model\ResourceModel\Customer\Indexer;
- /**
- * Customers collection for customer_grid indexer
- */
- class Collection extends \Magento\Customer\Model\ResourceModel\Customer\Collection
- {
- /**
- * @inheritdoc
- */
- protected function beforeAddLoadedItem(\Magento\Framework\DataObject $item)
- {
- return $item;
- }
- }
|