Commit 66aeb4bf authored by liuyuzhen's avatar liuyuzhen

会员信息

parent 02b69c20
...@@ -83,7 +83,8 @@ class MemberController extends \Our\Controller_AbstractApi { ...@@ -83,7 +83,8 @@ class MemberController extends \Our\Controller_AbstractApi {
* @throws Exception * @throws Exception
*/ */
public function logOutAction(){ public function logOutAction(){
$result = $this->memberService->logOut($this->key); $key = $this->req[\Our\NameConst::data]['key'];
$result = $this->memberService->logOut($key);
if($result){ if($result){
$this->success(new stdClass()); $this->success(new stdClass());
} }
......
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