@@ -121,7 +121,7 @@ |
||
| 121 | 121 | * @author yansongda <[email protected]> |
| 122 | 122 | * |
| 123 | 123 | * @param string $gateway |
| 124 | - * @param array $params |
|
| 124 | + * @param string $params |
|
| 125 | 125 | * |
| 126 | 126 | * @throws InvalidGatewayException |
| 127 | 127 | * |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | |
| 146 | 146 | $this->payload = array_merge($this->payload, $params); |
| 147 | 147 | |
| 148 | - $gateway = get_class($this).'\\'.Str::studly($gateway).'Gateway'; |
|
| 148 | + $gateway = get_class($this) . '\\' . Str::studly($gateway) . 'Gateway'; |
|
| 149 | 149 | |
| 150 | 150 | if (class_exists($gateway)) { |
| 151 | 151 | return $this->makePay($gateway); |
@@ -344,7 +344,7 @@ discard block |
||
| 344 | 344 | ); |
| 345 | 345 | |
| 346 | 346 | if (is_array($result)) { |
| 347 | - throw new GatewayException('Get Wechat API Error: '.$result['return_msg'], $result); |
|
| 347 | + throw new GatewayException('Get Wechat API Error: ' . $result['return_msg'], $result); |
|
| 348 | 348 | } |
| 349 | 349 | |
| 350 | 350 | return $result; |
@@ -366,7 +366,7 @@ discard block |
||
| 366 | 366 | $app = new $gateway(); |
| 367 | 367 | |
| 368 | 368 | if ($app instanceof GatewayInterface) { |
| 369 | - return $app->pay($this->gateway, array_filter($this->payload, function ($value) { |
|
| 369 | + return $app->pay($this->gateway, array_filter($this->payload, function($value) { |
|
| 370 | 370 | return $value !== '' && !is_null($value); |
| 371 | 371 | })); |
| 372 | 372 | } |
@@ -36,7 +36,7 @@ |
||
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | unset($payload['appid'], $payload['trade_type'], |
| 39 | - $payload['notify_url'], $payload['spbill_create_ip']); |
|
| 39 | + $payload['notify_url'], $payload['spbill_create_ip']); |
|
| 40 | 40 | |
| 41 | 41 | $payload['sign'] = Support::generateSign($payload); |
| 42 | 42 | |
@@ -36,7 +36,7 @@ |
||
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | unset($payload['appid'], $payload['trade_type'], |
| 39 | - $payload['notify_url'], $payload['spbill_create_ip']); |
|
| 39 | + $payload['notify_url'], $payload['spbill_create_ip']); |
|
| 40 | 40 | |
| 41 | 41 | $payload['sign'] = Support::generateSign($payload); |
| 42 | 42 | |
@@ -73,7 +73,7 @@ |
||
| 73 | 73 | */ |
| 74 | 74 | protected function create($method): GatewayApplicationInterface |
| 75 | 75 | { |
| 76 | - $gateway = __NAMESPACE__.'\\Gateways\\'.Str::studly($method); |
|
| 76 | + $gateway = __NAMESPACE__ . '\\Gateways\\' . Str::studly($method); |
|
| 77 | 77 | |
| 78 | 78 | if (class_exists($gateway)) { |
| 79 | 79 | return self::make($gateway); |
@@ -29,8 +29,8 @@ |
||
| 29 | 29 | |
| 30 | 30 | $mweb_url = $this->preOrder($payload)->get('mweb_url'); |
| 31 | 31 | |
| 32 | - $url = is_null(Support::getInstance()->return_url) ? $mweb_url : $mweb_url. |
|
| 33 | - '&redirect_url='.urlencode(Support::getInstance()->return_url); |
|
| 32 | + $url = is_null(Support::getInstance()->return_url) ? $mweb_url : $mweb_url . |
|
| 33 | + '&redirect_url=' . urlencode(Support::getInstance()->return_url); |
|
| 34 | 34 | |
| 35 | 35 | return RedirectResponse::create($url); |
| 36 | 36 | } |
@@ -36,7 +36,7 @@ |
||
| 36 | 36 | 'appId' => !$this->payRequestUseSubAppId ? $payload['appid'] : $payload['sub_appid'], |
| 37 | 37 | 'timeStamp' => strval(time()), |
| 38 | 38 | 'nonceStr' => Str::random(), |
| 39 | - 'package' => 'prepay_id='.$this->preOrder($payload)->get('prepay_id'), |
|
| 39 | + 'package' => 'prepay_id=' . $this->preOrder($payload)->get('prepay_id'), |
|
| 40 | 40 | 'signType' => 'MD5', |
| 41 | 41 | ]; |
| 42 | 42 | $pay_request['paySign'] = Support::generateSign($pay_request); |
@@ -14,6 +14,6 @@ |
||
| 14 | 14 | */ |
| 15 | 15 | public function __construct($message, $raw = []) |
| 16 | 16 | { |
| 17 | - parent::__construct('INVALID_GATEWAY: '.$message, $raw, self::INVALID_GATEWAY); |
|
| 17 | + parent::__construct('INVALID_GATEWAY: ' . $message, $raw, self::INVALID_GATEWAY); |
|
| 18 | 18 | } |
| 19 | 19 | } |
@@ -14,6 +14,6 @@ |
||
| 14 | 14 | */ |
| 15 | 15 | public function __construct($message, $raw = []) |
| 16 | 16 | { |
| 17 | - parent::__construct('INVALID_SIGN: '.$message, $raw, self::INVALID_SIGN); |
|
| 17 | + parent::__construct('INVALID_SIGN: ' . $message, $raw, self::INVALID_SIGN); |
|
| 18 | 18 | } |
| 19 | 19 | } |
@@ -14,6 +14,6 @@ |
||
| 14 | 14 | */ |
| 15 | 15 | public function __construct($message, $raw = []) |
| 16 | 16 | { |
| 17 | - parent::__construct('ERROR_BUSINESS: '.$message, $raw, self::ERROR_BUSINESS); |
|
| 17 | + parent::__construct('ERROR_BUSINESS: ' . $message, $raw, self::ERROR_BUSINESS); |
|
| 18 | 18 | } |
| 19 | 19 | } |