Collection.php 324 B

123456789101112131415
  1. <?php
  2. namespace Dotdigitalgroup\Email\Model\Product\Index;
  3. class Collection extends \Magento\Reports\Model\ResourceModel\Product\Index\Collection\AbstractCollection
  4. {
  5. /**
  6. * @return string
  7. */
  8. protected function _getTableName()
  9. {
  10. return $this->getTable('report_viewed_product_index');
  11. }
  12. }