Stub.php 471 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Payment\Test\Unit\Model\Method\AbstractMethod;
  7. /**
  8. * Class Stub
  9. *
  10. * Stub for \Magento\Payment\Model\Method\AbstractMethod
  11. */
  12. class Stub extends \Magento\Payment\Model\Method\AbstractMethod
  13. {
  14. const STUB_CODE = 'stub-code';
  15. /**
  16. * @return string
  17. */
  18. public function getCode()
  19. {
  20. return static::STUB_CODE;
  21. }
  22. }