您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

PayableEntity.php 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. namespace MirfalahTech\Laravel\Payment\Contracts;
  3. interface PayableEntity
  4. {
  5. /**
  6. * A unique id which represent the order.
  7. *
  8. * @return string
  9. */
  10. public function getBillId(): string;
  11. /**
  12. * Decimal number without any currency symbol, payment gateway need to convert
  13. * if different standard is used.
  14. *
  15. * @return string
  16. */
  17. public function getBillAmount(): string;
  18. /**
  19. * Get buyer's name.
  20. * @return string
  21. */
  22. public function getBillName(): string;
  23. /**
  24. * Get buyer's email.
  25. *
  26. * @return string
  27. */
  28. public function getBillEmail(): string;
  29. /**
  30. * Get buyer's phone number.
  31. *
  32. * @return string
  33. */
  34. public function getBillPhoneNumber(): string;
  35. /**
  36. * Get description for payment.
  37. *
  38. * @return string
  39. */
  40. public function getBillDescription(): string;
  41. /**
  42. * Get ISO 4214 currency code, payment gateway driver need to
  43. * convert if different standard is used.
  44. *
  45. * @return string
  46. */
  47. public function getBillCurrency(): string;
  48. /**
  49. * Get ISO 3166 country code, payment gateway driver need to
  50. * convert if different standard is used.
  51. *
  52. * @return string
  53. */
  54. public function getBillCountry(): string;
  55. }