DoNothingCommand.php 414 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\TestModuleFakePaymentMethod\Gateway\Command;
  7. use Magento\Payment\Gateway\CommandInterface;
  8. class DoNothingCommand implements CommandInterface
  9. {
  10. /**
  11. * @inheritDoc
  12. */
  13. public function execute(array $commandSubject)
  14. {
  15. // This is fake. No action expected.
  16. }
  17. }