KlarnaPaymentMethodInterface.php 733 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. /**
  3. * This file is part of the Klarna Kp module
  4. *
  5. * (c) Klarna AB
  6. *
  7. * For the full copyright and license information, please view the NOTICE
  8. * and LICENSE files that were distributed with this source code.
  9. */
  10. namespace Klarna\Kp\Api;
  11. /**
  12. * Interface KlarnaPaymentMethod
  13. *
  14. * @package Klarna\Kp\Model\Payment
  15. */
  16. interface KlarnaPaymentMethodInterface
  17. {
  18. /**
  19. * Set payment method code
  20. *
  21. * @param string $code
  22. * @return $this
  23. */
  24. public function setCode($code);
  25. /**
  26. * Get tag line
  27. *
  28. * @return string
  29. * @deprecated 5.3.0
  30. */
  31. public function getTagLine();
  32. /**
  33. * @return string
  34. * @deprecated 5.3.0
  35. */
  36. public function getLogoUrl();
  37. }