Collection.php 690 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\SendFriend\Model\ResourceModel\SendFriend;
  7. /**
  8. * SendFriend log resource collection
  9. *
  10. * @author Magento Core Team <core@magentocommerce.com>
  11. *
  12. * @api
  13. * @since 100.0.2
  14. */
  15. class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection
  16. {
  17. /**
  18. * Init resource collection
  19. *
  20. * @return void
  21. */
  22. protected function _construct()
  23. {
  24. $this->_init(
  25. \Magento\SendFriend\Model\SendFriend::class,
  26. \Magento\SendFriend\Model\ResourceModel\SendFriend::class
  27. );
  28. }
  29. }