Commit 48187cf6 by 王召彬

fixbug

parent 201cf1a7
...@@ -15,7 +15,7 @@ use Swoft\Core\ResultInterface; ...@@ -15,7 +15,7 @@ use Swoft\Core\ResultInterface;
/** /**
* The interface of store-commission service * The interface of store-commission service
* *
* @method ResultInterface deferGetWxAccessToken(int $appId, string $appSecret) * @method ResultInterface deferGetWxAccessToken(string $appId, string $appSecret)
*/ */
interface WeappInterface interface WeappInterface
{ {
...@@ -23,10 +23,10 @@ interface WeappInterface ...@@ -23,10 +23,10 @@ interface WeappInterface
* 根据appId获取对应的access_token * 根据appId获取对应的access_token
* *
* @Number(name="appId") * @Number(name="appId")
* @param int $appId * @param string $appId
* @param string $appSecret * @param string $appSecret
* @return string * @return string
*/ */
public function getWxAccessToken(int $appId, string $appSecret); public function getWxAccessToken(string $appId, string $appSecret);
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment