Facade.php 1.2 KB

1234567891011121314151617181920212223242526272829
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2024 https://www.yiovo.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
  8. // +----------------------------------------------------------------------
  9. // | Author: 萤火科技 <admin@yiovo.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\common\library\payment;
  12. use app\common\library\payment\gateway\Driver;
  13. /**
  14. * 第三方支付工厂类
  15. * Class Facade
  16. * @package app\common\library\payment
  17. * @mixin Payment
  18. * @method static Driver store(string $name = null) 连接或者切换驱动
  19. * @method static Driver setOptions(string $client, array $options) 设置支付配置参数
  20. */
  21. class Facade extends \think\Facade
  22. {
  23. protected static function getFacadeClass(): string
  24. {
  25. return Payment::class;
  26. }
  27. }