From f8c8c9d317aa57b7b5622f1bb75e217b3b1d3c9a Mon Sep 17 00:00:00 2001 From: Anyon Date: Mon, 12 Nov 2018 21:58:40 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E4=B8=AA=E6=80=A7=E6=94=AF?= =?UTF-8?q?=E4=BB=98=E5=AE=9D=E6=94=AF=E4=BB=98=20#17?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AliPay/Pos.php | 2 +- AliPay/Scan.php | 2 +- WeChat/Contracts/BasicAliPay.php | 5 +++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/AliPay/Pos.php b/AliPay/Pos.php index b173082..e24df3e 100644 --- a/AliPay/Pos.php +++ b/AliPay/Pos.php @@ -42,6 +42,6 @@ class Pos extends BasicAliPay */ public function apply($options) { - return $this->getResult($options); + return $this->getResult($options, 'get'); } } \ No newline at end of file diff --git a/AliPay/Scan.php b/AliPay/Scan.php index b86afc1..d2571f0 100644 --- a/AliPay/Scan.php +++ b/AliPay/Scan.php @@ -41,6 +41,6 @@ class Scan extends BasicAliPay */ public function apply($options) { - return $this->getResult($options); + return $this->getResult($options, 'get'); } } \ No newline at end of file diff --git a/WeChat/Contracts/BasicAliPay.php b/WeChat/Contracts/BasicAliPay.php index 826446e..cca833c 100644 --- a/WeChat/Contracts/BasicAliPay.php +++ b/WeChat/Contracts/BasicAliPay.php @@ -190,13 +190,14 @@ abstract class BasicAliPay /** * 请求接口并验证访问数据 * @param array $options + * @param string $method * @return array|boolean * @throws \WeChat\Exceptions\InvalidResponseException */ - protected function getResult($options) + protected function getResult($options, $method = 'post') { $this->applyData($options); - $data = json_decode(Tools::post($this->gateway, $this->options->get()), true); + $data = json_decode(Tools::$method($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(