Debug.php 570 B

12345678910111213141516171819202122232425
  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;
  8. /**
  9. * Resource Authorize.net debug model
  10. * @deprecated 100.3.1 Authorize.net is removing all support for this payment method
  11. */
  12. class Debug extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
  13. {
  14. /**
  15. * Resource initialization
  16. *
  17. * @return void
  18. */
  19. protected function _construct()
  20. {
  21. $this->_init('authorizenet_debug', 'debug_id');
  22. }
  23. }