[更新]修正接口参数顺序

This commit is contained in:
Anyon 2018-03-26 15:43:31 +08:00
parent e79ddef850
commit e21f1c8415

View File

@ -63,7 +63,7 @@ class Push
if (empty($this->appid) || empty($this->openid) || empty($this->receive)) {
throw new Exception('微信API实例缺失必要参数[appid,openid,event].');
}
return $this->call($this->openid, $this->appid, $this->receive);
return $this->call($this->appid, $this->openid, $this->receive);
}
/**