1234567891011121314151617181920212223242526 |
- <?php
- namespace App\Libs\Pay;
- use App\Libs\Pay\Merchants\Swiftpass;
- class WechatPay
- {
- private static $_instance;
- static function instance($merchant)
- {
- if(!self::$_instance)
- {
- switch ($merchant) {
- case 'Swiftpass':
- self::$_instance = new Swiftpass();
- break;
- }
-
- }
- return self::$_instance;
- }
- }
|