Counts.php 420 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\NewRelicReporting\Model;
  7. class Counts extends \Magento\Framework\Model\AbstractModel
  8. {
  9. /**
  10. * Initialize counts model
  11. *
  12. * @return void
  13. */
  14. protected function _construct()
  15. {
  16. $this->_init(\Magento\NewRelicReporting\Model\ResourceModel\Counts::class);
  17. }
  18. }