Collection.php 582 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\NewRelicReporting\Model\ResourceModel\System;
  7. class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection
  8. {
  9. /**
  10. * Initialize system updates resource collection
  11. *
  12. * @return void
  13. */
  14. protected function _construct()
  15. {
  16. $this->_init(
  17. \Magento\NewRelicReporting\Model\System::class,
  18. \Magento\NewRelicReporting\Model\ResourceModel\System::class
  19. );
  20. }
  21. }