PayUser.php 803 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. namespace app\service\pay_user;
  3. use app\common\model\User;
  4. abstract class PayUser{
  5. protected static $types=[
  6. 1=>PayUserMoney::class,
  7. 2=>PayUserWechat::class,
  8. ];
  9. protected static $type;
  10. /**
  11. * @return mixed
  12. */
  13. public static function getType()
  14. {
  15. return self::$type;
  16. }
  17. /**
  18. * @param mixed $type
  19. */
  20. public static function setType($type): void
  21. {
  22. if(!$type){
  23. $type=1;
  24. }
  25. self::$type = $type;
  26. }
  27. /**
  28. * @return self
  29. */
  30. public static function getClass(){
  31. static $class;
  32. if(!$class){
  33. $class=new self::$types[self::$type];
  34. }
  35. return $class;
  36. }
  37. abstract function payment($amount,User $user,$type,$memo,$extra=[]);
  38. }