Collection.php 609 B

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