PassthroughDataObject.php 383 B

12345678910111213141516171819
  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\AuthorizenetAcceptjs\Model;
  8. use Magento\Framework\DataObject;
  9. /**
  10. * Contains all the accumulated data from the request builders that should be passed through to the handlers
  11. */
  12. class PassthroughDataObject extends DataObject
  13. {
  14. }