diff --git a/AliPay/App.php b/AliPay/App.php new file mode 100644 index 0000000..829ffe7 --- /dev/null +++ b/AliPay/App.php @@ -0,0 +1,48 @@ +options->set('method', 'alipay.trade.app.pay'); + $this->params->set('product_code', 'QUICK_MSECURITY_PAY'); + } + + /** + * 创建数据操作 + * @param array $options + * @return string + */ + public function apply($options) + { + $this->buildData($options); + return http_build_query($this->options->get()); + } +} \ No newline at end of file diff --git a/AliPay/Bill.php b/AliPay/Bill.php new file mode 100644 index 0000000..1a95d3f --- /dev/null +++ b/AliPay/Bill.php @@ -0,0 +1,42 @@ +options->set('method', 'alipay.data.dataservice.bill.downloadurl.query'); + } + + /** + * 创建数据操作 + * @param array $options + * @return mixed + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function apply($options) + { + return $this->getResult($options); + } +} \ No newline at end of file diff --git a/AliPay/Contracts/AliPay.php b/AliPay/Contracts/AliPay.php new file mode 100644 index 0000000..3961d16 --- /dev/null +++ b/AliPay/Contracts/AliPay.php @@ -0,0 +1,232 @@ +params = new DataArray([]); + $this->config = new DataArray($options); + if (empty($options['appid'])) { + throw new InvalidArgumentException("Missing Config -- [appid]"); + } + if (!empty($options['debug'])) { + $this->gateway = 'https://openapi.alipaydev.com/gateway.do?charset=utf-8'; + } + $this->options = new DataArray([ + 'app_id' => $this->config->get('appid'), + 'charset' => empty($options['charset']) ? 'utf-8' : $options['charset'], + 'format' => 'JSON', + 'version' => '1.0', + 'sign_type' => 'RSA2', + 'timestamp' => date('Y-m-d H:i:s'), + ]); + if (isset($options['notify_url']) && $options['notify_url'] !== '') { + $this->options->set('notify_url', $options['notify_url']); + } + if (isset($options['return_url']) && $options['return_url'] !== '') { + $this->options->set('return_url', $options['return_url']); + } + if (isset($options['app_auth_token']) && $options['app_auth_token'] !== '') { + $this->options->set('app_auth_token', $options['app_auth_token']); + } + } + + /** + * 查询支付宝订单状态 + * @param string $out_trade_no + * @return array|boolean + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function query($out_trade_no = '') + { + $this->options['method'] = 'alipay.trade.query'; + return $this->getResult(['out_trade_no' => $out_trade_no]); + } + + /** + * 支付宝订单退款操作 + * @param array|string $options 退款参数或退款商户订单号 + * @param null $refund_amount 退款金额 + * @return array|boolean + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function refund($options, $refund_amount = null) + { + if (!is_array($options)) $options = ['out_trade_no' => $options, 'refund_amount' => $refund_amount]; + $this->options['method'] = 'alipay.trade.refund'; + return $this->getResult($options); + } + + /** + * 关闭支付宝进行中的订单 + * @param array|string $options + * @return array|boolean + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function close($options) + { + if (!is_array($options)) $options = ['out_trade_no' => $options]; + $this->options['method'] = 'alipay.trade.close'; + return $this->getResult($options); + } + + /** + * 验证支付宝支付宝通知 + * @param array $data 通知数据 + * @param null $sign 数据签名 + * @param boolean $sync + * @return array|bool + */ + public function verify($data, $sign = null, $sync = false) + { + if (is_null($this->config->get('public_key'))) { + throw new InvalidArgumentException('Missing Config -- [public_key]'); + } + $sign = is_null($sign) ? $data['sign'] : $sign; + $str = $sync ? json_encode($data) : $this->getSignContent($data, true); + $res = "-----BEGIN PUBLIC KEY-----\n" . wordwrap($this->config->get('public_key'), 64, "\n", true) . "\n-----END PUBLIC KEY-----"; + return openssl_verify($str, base64_decode($sign), $res, OPENSSL_ALGO_SHA256) === 1 ? $data : false; + } + + /** + * 获取数据签名 + * @return string + */ + protected function getSign() + { + if (is_null($this->config->get('private_key'))) { + throw new InvalidArgumentException('Missing Config -- [private_key]'); + } + $res = "-----BEGIN RSA PRIVATE KEY-----\n" . + wordwrap($this->config->get('private_key'), 64, "\n", true) . + "\n-----END RSA PRIVATE KEY-----"; + openssl_sign($this->getSignContent($this->options->get()), $sign, $res, OPENSSL_ALGO_SHA256); + return base64_encode($sign); + } + + /** + * 数据签名处理 + * @param array $data + * @param boolean $verify + * @param array $strs + * @return bool|string + */ + private function getSignContent(array $data, $verify = false, $strs = []) + { + ksort($data); + foreach ($data as $k => $v) if ($v !== '') { + if ($verify && $k != 'sign' && $k != 'sign_type') array_push($strs, "{$k}={$v}"); + if (!$verify && $v !== '' && !is_null($v) && $k != 'sign' && '@' != substr($v, 0, 1)) array_push($strs, "{$k}={$v}"); + } + return join('&', $strs); + } + + /** + * 数据包生成及数据签名 + * @param array $options + */ + protected function buildData($options) + { + $this->options['biz_content'] = json_encode($options, JSON_UNESCAPED_UNICODE); + $this->options['sign'] = $this->getSign(); + } + + /** + * 请求接口并验证访问数据 + * @param array $options + * @return array|boolean + * @throws \WeChat\Exceptions\InvalidResponseException + */ + protected function getResult($options) + { + $this->buildData($options); + $data = json_decode(Tools::post($this->gateway, $this->options->get()), true); + $method = str_replace('.', '_', $this->options['method']) . '_response'; + if (!isset($data[$method]['code']) || $data[$method]['code'] !== '10000') { + throw new \WeChat\Exceptions\InvalidResponseException( + "\nResultError" . + (empty($data[$method]['code']) ? '' : "\n{$data[$method]['msg']}[{$data[$method]['code']}]") . + (empty($data[$method]['sub_code']) ? '' : "\n{$data[$method]['sub_msg']}[{$data[$method]['sub_code']}]\n"), + $data[$method]['code'], + $data + ); + } + return $this->verify($data[$method], $data['sign'], true); + } + + /** + * 生成支付html代码 + * @return string + */ + protected function buildPayHtml() + { + $html = "
"; + return "{$html}"; + } + + /** + * 应用数据操作 + * @param array $options + * @return mixed + */ + abstract public function apply($options); + + +} \ No newline at end of file diff --git a/AliPay/Pos.php b/AliPay/Pos.php new file mode 100644 index 0000000..a24ba31 --- /dev/null +++ b/AliPay/Pos.php @@ -0,0 +1,47 @@ +options->set('method', 'alipay.trade.pay'); + $this->params->set('product_code', 'FACE_TO_FACE_PAYMENT'); + } + + /** + * 创建数据操作 + * @param array $options + * @return mixed + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function apply($options) + { + return $this->getResult($options); + } +} \ No newline at end of file diff --git a/AliPay/Scan.php b/AliPay/Scan.php new file mode 100644 index 0000000..dc32a1d --- /dev/null +++ b/AliPay/Scan.php @@ -0,0 +1,47 @@ +options->set('method', 'alipay.trade.precreate'); + } + + /** + * 创建数据操作 + * @param array $options + * @return mixed + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function apply($options) + { + return $this->getResult($options); + } +} \ No newline at end of file diff --git a/AliPay/Transfer.php b/AliPay/Transfer.php new file mode 100644 index 0000000..9aabc0c --- /dev/null +++ b/AliPay/Transfer.php @@ -0,0 +1,47 @@ +options->set('method', 'alipay.fund.trans.toaccount.transfer'); + } + + /** + * 创建数据操作 + * @param array $options + * @return mixed + * @throws \WeChat\Exceptions\InvalidResponseException + */ + public function apply($options) + { + return $this->getResult($options); + } +} \ No newline at end of file diff --git a/AliPay/Wap.php b/AliPay/Wap.php new file mode 100644 index 0000000..941ddee --- /dev/null +++ b/AliPay/Wap.php @@ -0,0 +1,48 @@ +options->set('method', 'alipay.trade.wap.pay'); + $this->params->set('product_code', 'QUICK_WAP_WAY'); + } + + /** + * 创建数据操作 + * @param array $options + * @return string + */ + public function apply($options) + { + parent::buildData($options); + return $this->buildPayHtml(); + } +} \ No newline at end of file diff --git a/AliPay/Web.php b/AliPay/Web.php new file mode 100644 index 0000000..bb0a9c9 --- /dev/null +++ b/AliPay/Web.php @@ -0,0 +1,48 @@ +options->set('method', 'alipay.trade.page.pay'); + $this->params->set('product_code', 'FAST_INSTANT_TRADE_PAY'); + } + + /** + * 创建数据操作 + * @param array $options + * @return string + */ + public function apply($options) + { + parent::buildData($options); + return $this->buildPayHtml(); + } +} \ No newline at end of file diff --git a/Test/alipay-app.php b/Test/alipay-app.php new file mode 100644 index 0000000..0098a59 --- /dev/null +++ b/Test/alipay-app.php @@ -0,0 +1,35 @@ +apply([ + 'out_trade_no' => time(), // 商户订单号 + 'total_amount' => '1', // 支付金额 + 'subject' => 'test subject', // 支付订单描述 + ]); + echo ''; + var_export($result); +} catch (Exception $e) { + echo $e->getMessage(); +} + + diff --git a/Test/alipay-bill.php b/Test/alipay-bill.php new file mode 100644 index 0000000..38a3a11 --- /dev/null +++ b/Test/alipay-bill.php @@ -0,0 +1,34 @@ +apply([ + 'bill_date' => '2017-11-03', // 账单时间(日账单yyyy-MM-dd,月账单 yyyy-MM) + 'bill_type' => 'signcustomer', // 账单类型(trade指商户基于支付宝交易收单的业务账单,signcustomer是指基于商户支付宝余额收入及支出等资金变动的帐务账单) + ]); + echo ''; + var_export($result); +} catch (Exception $e) { + echo $e->getMessage(); +} + + diff --git a/Test/alipay-notify.php b/Test/alipay-notify.php new file mode 100644 index 0000000..5c05406 --- /dev/null +++ b/Test/alipay-notify.php @@ -0,0 +1,42 @@ +driver('alipay')->gateway()->verify($_POST)) { + file_put_contents('notify.txt', "收到来自支付宝的异步通知\r\n", FILE_APPEND); + file_put_contents('notify.txt', '订单号:' . $_POST['out_trade_no'] . "\r\n", FILE_APPEND); + file_put_contents('notify.txt', '订单金额:' . $_POST['total_amount'] . "\r\n\r\n", FILE_APPEND); +} else { + file_put_contents('notify.txt', "收到异步通知\r\n", FILE_APPEND); +} + + +// 下面是项目的真实代码 +/* +$pay = new \Pay\Pay(config('pay')); +$notifyInfo = $pay->driver('alipay')->gateway('app')->verify(request()->post('', '', null)); +p($notifyInfo, false, RUNTIME_PATH . date('Ymd') . '_notify.txt'); +if (in_array($notifyInfo['trade_status'], ['TRADE_SUCCESS', 'TRADE_FINISHED'])) { + // 更新订单状态 + $this->updateOrder($notifyInfo['out_trade_no'], $notifyInfo['trade_no'], $notifyInfo['receipt_amount'], 'alipay'); +} +*/ \ No newline at end of file diff --git a/Test/alipay-pos.php b/Test/alipay-pos.php new file mode 100644 index 0000000..bd96b94 --- /dev/null +++ b/Test/alipay-pos.php @@ -0,0 +1,37 @@ +apply([ + 'out_trade_no' => '4312412343', // 订单号 + 'total_amount' => '13', // 订单金额,单位:元 + 'subject' => '订单商品标题', // 订单商品标题 + 'auth_code' => '123456', // 授权码 + 'notify_url' => 'http://localhost/notify.php', // 定义通知URL + ]); + echo ''; + var_export($result); +} catch (Exception $e) { + echo $e->getMessage(); +} + + diff --git a/Test/alipay-refund.php b/Test/alipay-refund.php new file mode 100644 index 0000000..de03f9f --- /dev/null +++ b/Test/alipay-refund.php @@ -0,0 +1,33 @@ +refund($out_trade_no, $refund_fee); + echo ''; + var_export($result); +} catch (Exception $e) { + echo $e->getMessage(); +} \ No newline at end of file diff --git a/Test/alipay-scan.php b/Test/alipay-scan.php new file mode 100644 index 0000000..65bb3b8 --- /dev/null +++ b/Test/alipay-scan.php @@ -0,0 +1,35 @@ +apply([ + 'out_trade_no' => '14321412', // 订单号 + 'total_amount' => '13', // 订单金额,单位:元 + 'subject' => '订单商品标题', // 订单商品标题 + ]); + echo ''; + var_export($result); +} catch (Exception $e) { + echo $e->getMessage(); +} + + diff --git a/Test/alipay-transfer.php b/Test/alipay-transfer.php new file mode 100644 index 0000000..35a0ead --- /dev/null +++ b/Test/alipay-transfer.php @@ -0,0 +1,37 @@ +apply([ + 'out_biz_no' => '', // 订单号 + 'payee_type' => 'ALIPAY_LOGONID', // 收款方账户类型(ALIPAY_LOGONID | ALIPAY_USERID) + 'payee_account' => 'demo@sandbox.com', // 收款方账户 + 'amount' => '10', // 转账金额 + 'payer_show_name' => '未寒', // 付款方姓名 + 'payee_real_name' => '张三', // 收款方真实姓名 + 'remark' => '张三', // 转账备注 + ]); + echo ''; + var_export($result); +} catch (Exception $e) { + echo $e->getMessage(); +} + diff --git a/Test/alipay-wap.php b/Test/alipay-wap.php new file mode 100644 index 0000000..f2936b2 --- /dev/null +++ b/Test/alipay-wap.php @@ -0,0 +1,38 @@ +apply([ + 'out_trade_no' => time(), // 商户订单号 + 'total_amount' => '1', // 支付金额 + 'subject' => '支付订单描述', // 支付订单描述 + ]); + echo ''; + var_export($result); +} catch (Exception $e) { + echo $e->getMessage(); +} + + diff --git a/Test/alipay-web.php b/Test/alipay-web.php new file mode 100644 index 0000000..47312de --- /dev/null +++ b/Test/alipay-web.php @@ -0,0 +1,38 @@ +apply([ + 'out_trade_no' => time(), // 商户订单号 + 'total_amount' => '1', // 支付金额 + 'subject' => '支付订单描述', // 支付订单描述 + ]); + echo ''; + var_export($result); +} catch (Exception $e) { + echo $e->getMessage(); +} + + diff --git a/Test/alipay.php b/Test/alipay.php new file mode 100644 index 0000000..f4fe48a --- /dev/null +++ b/Test/alipay.php @@ -0,0 +1,15 @@ + true, + // 应用ID + 'appid' => '2016090900468879', + // 支付宝公钥(1行填写) + 'public_key' => 'MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtU71NY53UDGY7JNvLYAhsNa+taTF6KthIHJmGgdio9bkqeJGhHk6ttkTKkLqFgwIfgAkHpdKiOv1uZw6gVGZ7TCu5LfHTqKrCd6Uz+N7hxhY+4IwicLgprcV1flXQLmbkJYzFMZqkXGkSgOsR2yXh4LyQZczgk9N456uuzGtRy7MoB4zQy34PLUkkxR6W1B2ftNbLRGXv6tc7p/cmDcrY6K1bSxnGmfRxFSb8lRfhe0V0UM6pKq2SGGSeovrKHN0OLp+Nn5wcULVnFgATXGCENshRlp96piPEBFwneXs19n+sX1jx60FTR7/rME3sW3AHug0fhZ9mSqW4x401WjdnwIDAQAB', + // 支付宝私钥(1行填写) + 'private_key' => 'MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQC3pbN7esinxgjE8uxXAsccgGNKIq+PR1LteNTFOy0fsete43ObQCrzd9DO0zaUeBUzpIOnxrKxez7QoZROZMYrinttFZ/V5rbObEM9E5AR5Tv/Fr4IBywoS8ZtN16Xb+fZmibfU91yq9O2RYSvscncU2qEYmmaTenM0QlUO80ZKqPsM5JkgCNdcYZTUeHclWeyER3dSImNtlSKiSBSSTHthb11fkudjzdiUXua0NKVWyYuAOoDMcpXbD6NJmYqEA/iZ/AxtQt08pv0Mow581GPB0Uop5+qA2hCV85DpagE94a067sKcRui0rtkJzHem9k7xVL+2RoFm1fv3RnUkMwhAgMBAAECggEAAetkddzxrfc+7jgPylUIGb8pyoOUTC4Vqs/BgZI9xYAJksNT2QKRsFvHPfItNt4Ocqy8h4tnIL3GCU43C564B4p6AcjhE85GiN/O0BudPOKlfuQQ9mqExqMMHuYeQfz0cmzPDTSGMwWiv9v4KBH2pyvkCCAzNF6uG+rvawb4/NNVuiI7C8Ku/wYsamtbgjMZVOFFdScYgIw1BgA99RUU/fWBLMnTQkoyowSRb9eSmEUHjt/WQt+/QgKAT2WmuX4RhaGy0qcQLbNaJNKXdJ+PVhQrSiasINNtqYMa8GsQuuKsk3X8TCg9K6/lowivt5ruhyWcP2sx93zY/LGzIHgHcQKBgQDoZlcs9RWxTdGDdtH8kk0J/r+QtMijNzWI0a+t+ZsWOyd3rw+uM/8O4JTNP4Y98TvvxhJXewITbfiuOIbW1mxh8bnO/fcz7+RXZKgPDeoTeNo717tZFZGBEyUdH9M9Inqvht7+hjVDIMCYBDomYebdk3Xqo4mDBjLRdVNGrhGmVQKBgQDKS/MgTMK8Ktfnu1KzwCbn/FfHTOrp1a1t1wWPv9AW0rJPYeaP6lOkgIoO/1odG9qDDhdB6njqM+mKY5Yr3N94PHamHbwJUCmbkqEunCWpGzgcQZ1Q254xk9D7UKq/XUqW2WDqDq80GQeNial+fBc46yelQzokwdA+JdIFKoyinQKBgQCBems9V/rTAtkk1nFdt6EGXZEbLS3PiXXhGXo4gqV+OEzf6H/i/YMwJb2hsK+5GQrcps0XQihA7PctEb9GOMa/tu5fva0ZmaDtc94SLR1p5d4okyQFGPgtIp594HpPSEN0Qb9BrUJFeRz0VP6U3dzDPGHo7V4yyqRLgIN6EIcy1QKBgAqdh6mHPaTAHspDMyjJiYEc5cJIj/8rPkmIQft0FkhMUB0IRyAALNlyAUyeK61hW8sKvz+vPR8VEEk5xpSQp41YpuU6pDZc5YILZLfca8F+8yfQbZ/jll6Foi694efezl4yE/rUQG9cbOAJfEJt4o4TEOaEK5XoMbRBKc8pl22lAoGARTq0qOr9SStihRAy9a+8wi2WEwL4QHcmOjH7iAuJxy5b5TRDSjlk6h+0dnTItiFlTXdfpO8KhWA8EoSJVBZ1kcACQDFgMIA+VM+yXydtzMotOn21W4stfZ4I6dHFiujMsnKpNYVpQh3oCrJf4SeXiQDdiSCodqb1HlKkEc6naHQ=', + // 支付成功通知地址 + 'notify_url' => '', + // 网页支付回跳地址 + 'return_url' => '', +]; \ No newline at end of file diff --git a/Test/config.php b/Test/config.php index 403f7ef..687b2dd 100644 --- a/Test/config.php +++ b/Test/config.php @@ -21,9 +21,9 @@ return [ 'mch_id' => "1332187001", 'mch_key' => 'A82DC5BD1F3359081049C568D8502BC5', // 配置商户支付双向证书目录 (p12 | key,cert 二选一,两者都配置时p12优先) - // 'ssl_p12' => __DIR__ . DIRECTORY_SEPARATOR . 'cert' . DIRECTORY_SEPARATOR . 'apiclient_cert.p12', - 'ssl_key' => __DIR__ . DIRECTORY_SEPARATOR . 'cert' . DIRECTORY_SEPARATOR . 'apiclient_key.pem', - 'ssl_cer' => __DIR__ . DIRECTORY_SEPARATOR . 'cert' . DIRECTORY_SEPARATOR . 'apiclient_cert.pem', + 'ssl_p12' => __DIR__ . DIRECTORY_SEPARATOR . 'cert' . DIRECTORY_SEPARATOR . '1332187001_20181030_cert.p12', + // 'ssl_key' => __DIR__ . DIRECTORY_SEPARATOR . 'cert' . DIRECTORY_SEPARATOR . '1332187001_20181030_key.pem', + // 'ssl_cer' => __DIR__ . DIRECTORY_SEPARATOR . 'cert' . DIRECTORY_SEPARATOR . '1332187001_20181030_cert.pem', // 配置缓存目录,需要拥有写权限 'cache_path' => '', ]; \ No newline at end of file diff --git a/WePay/Bill.php b/WePay/Bill.php index e0767ae..3ad9459 100644 --- a/WePay/Bill.php +++ b/WePay/Bill.php @@ -51,7 +51,8 @@ class Bill extends BasicPay * 拉取订单评价数据 * @param array $options * @return array - * @throws \WeChat\Exceptions\InvalidResponseException + * @throws InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException */ public function comment(array $options) { diff --git a/WePay/Coupon.php b/WePay/Coupon.php index 3281048..28a0f3a 100644 --- a/WePay/Coupon.php +++ b/WePay/Coupon.php @@ -28,6 +28,7 @@ class Coupon extends BasicPay * @param array $options * @return array * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException */ public function create(array $options) { @@ -40,6 +41,7 @@ class Coupon extends BasicPay * @param array $options * @return array * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException */ public function queryStock(array $options) { @@ -52,6 +54,7 @@ class Coupon extends BasicPay * @param array $options * @return array * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException */ public function queryInfo(array $options) { diff --git a/WePay/Order.php b/WePay/Order.php index bed6af6..06a158b 100644 --- a/WePay/Order.php +++ b/WePay/Order.php @@ -30,6 +30,7 @@ class Order extends BasicPay * @param array $options * @return array * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException */ public function create(array $options) { @@ -42,6 +43,7 @@ class Order extends BasicPay * @param array $options * @return array * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException */ public function query(array $options) { @@ -54,6 +56,7 @@ class Order extends BasicPay * @param string $outTradeNo 商户订单号 * @return array * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException */ public function close($outTradeNo) { @@ -102,6 +105,7 @@ class Order extends BasicPay * @param array $options * @return array * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException */ public function reverse(array $options) { @@ -114,6 +118,7 @@ class Order extends BasicPay * @param string $authCode 扫码支付授权码,设备读取用户微信中的条码或者二维码信息 * @return array * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException */ public function queryAuthCode($authCode) { @@ -126,6 +131,7 @@ class Order extends BasicPay * @param array $options * @return array * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException */ public function report(array $options) { diff --git a/WePay/Redpack.php b/WePay/Redpack.php index 4da8975..3f0fc3e 100644 --- a/WePay/Redpack.php +++ b/WePay/Redpack.php @@ -29,6 +29,7 @@ class Redpack extends BasicPay * @param array $options * @return array * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException */ public function create(array $options) { @@ -43,6 +44,7 @@ class Redpack extends BasicPay * @param array $options * @return array * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException */ public function groups(array $options) { @@ -57,6 +59,7 @@ class Redpack extends BasicPay * @param string $mchBillno 商户发放红包的商户订单号 * @return array * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException */ public function query($mchBillno) { diff --git a/WePay/Refund.php b/WePay/Refund.php index da81522..ba98d18 100644 --- a/WePay/Refund.php +++ b/WePay/Refund.php @@ -30,7 +30,8 @@ class Refund extends BasicPay * 创建退款订单 * @param array $options * @return array - * @throws \WeChat\Exceptions\InvalidResponseException + * @throws InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException */ public function create(array $options) { @@ -42,7 +43,8 @@ class Refund extends BasicPay * 查询退款 * @param array $options * @return array - * @throws \WeChat\Exceptions\InvalidResponseException + * @throws InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException */ public function query(array $options) { diff --git a/WePay/Transfers.php b/WePay/Transfers.php index f86d147..130dce4 100644 --- a/WePay/Transfers.php +++ b/WePay/Transfers.php @@ -29,6 +29,7 @@ class Transfers extends BasicPay * @param array $options * @return array * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException */ public function create(array $options) { @@ -45,6 +46,7 @@ class Transfers extends BasicPay * @param string $partnerTradeNo 商户调用企业付款API时使用的商户订单号 * @return array * @throws \WeChat\Exceptions\InvalidResponseException + * @throws \WeChat\Exceptions\LocalCacheException */ public function query($partnerTradeNo) { diff --git a/include.php b/include.php index 49dc9f8..0b1e02b 100644 --- a/include.php +++ b/include.php @@ -13,20 +13,12 @@ // +---------------------------------------------------------------------- spl_autoload_register(function ($classname) { - $separator = DIRECTORY_SEPARATOR; - $filename = __DIR__ . $separator . str_replace('\\', $separator, $classname) . '.php'; + $filename = __DIR__ . DIRECTORY_SEPARATOR . str_replace('\\', DIRECTORY_SEPARATOR, $classname) . '.php'; if (file_exists($filename)) { - if (stripos($classname, 'WeChat') === 0) { - include $filename; - } - if (stripos($classname, 'WeMini') === 0) { - include $filename; - } - if (stripos($classname, 'WePay') === 0) { - include $filename; - } - if ($classname === 'We') { - include $filename; - } + if (stripos($classname, 'WeChat') === 0) include $filename; + elseif (stripos($classname, 'WeMini') === 0) include $filename; + elseif (stripos($classname, 'WePay') === 0) include $filename; + elseif (stripos($classname, 'AliPay') === 0) include $filename; + elseif ($classname === 'We') include $filename; } }); \ No newline at end of file