Collection.php 465 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Customer\Model\ResourceModel\Customer\Indexer;
  7. /**
  8. * Customers collection for customer_grid indexer
  9. */
  10. class Collection extends \Magento\Customer\Model\ResourceModel\Customer\Collection
  11. {
  12. /**
  13. * @inheritdoc
  14. */
  15. protected function beforeAddLoadedItem(\Magento\Framework\DataObject $item)
  16. {
  17. return $item;
  18. }
  19. }