Collection.php 482 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Tax report collection
  8. *
  9. * @author Magento Core Team <core@magentocommerce.com>
  10. */
  11. namespace Magento\Tax\Model\ResourceModel\Report\Updatedat;
  12. class Collection extends \Magento\Tax\Model\ResourceModel\Report\Collection
  13. {
  14. /**
  15. * Aggregated Data Table
  16. *
  17. * @var string
  18. */
  19. protected $_aggregationTable = 'tax_order_aggregated_updated';
  20. }