Collection.php 709 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. declare(strict_types=1);
  7. namespace Magento\Authorizenet\Model\ResourceModel\Debug;
  8. /**
  9. * Resource Authorize.net debug collection model
  10. * @deprecated 100.3.1 Authorize.net is removing all support for this payment method
  11. */
  12. class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection
  13. {
  14. /**
  15. * Resource initialization
  16. *
  17. * @return void
  18. */
  19. protected function _construct()
  20. {
  21. $this->_init(
  22. \Magento\Authorizenet\Model\Debug::class,
  23. \Magento\Authorizenet\Model\ResourceModel\Debug::class
  24. );
  25. }
  26. }