StubUpdatingService.php 546 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Signifyd\Model\CaseServices;
  7. use Magento\Signifyd\Api\Data\CaseInterface;
  8. /**
  9. * Stub implementation for case updating service interface and might be used
  10. * for test Signifyd webhooks
  11. */
  12. class StubUpdatingService implements UpdatingServiceInterface
  13. {
  14. /**
  15. * @inheritdoc
  16. */
  17. public function update(CaseInterface $case, array $data)
  18. {
  19. // just stub method and doesn't contain any logic
  20. }
  21. }