Initial.php 577 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Customers by totals Report collection
  8. *
  9. * @author Magento Core Team <core@magentocommerce.com>
  10. */
  11. namespace Magento\Reports\Model\ResourceModel\Accounts\Collection;
  12. /**
  13. * @api
  14. * @since 100.0.2
  15. */
  16. class Initial extends \Magento\Reports\Model\ResourceModel\Report\Collection
  17. {
  18. /**
  19. * Report sub-collection class name
  20. * @var string
  21. */
  22. protected $_reportCollection = \Magento\Reports\Model\ResourceModel\Accounts\Collection::class;
  23. }