李帅

1.打印paypal token

......@@ -18,7 +18,7 @@ class PaymentFactory
case 'wechat':
return new WechatPayment();
case 'paypal':
return new PayPalPayment();
return new PaypalPayment();
default:
throw new \Exception('未知的支付方式');
}
......
......@@ -17,7 +17,7 @@ use GuzzleHttp\Client;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Redis;
class PayPalPayment implements PaymentInterface
class PaypalPayment implements PaymentInterface
{
const IS_SANDBOX = true;
......