Collection.php 501 B

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