Browse Source

增加国家实名认证系统上报游戏行为

alexzy 3 years ago
parent
commit
8cdf2aabfa
1 changed files with 8 additions and 0 deletions
  1. 8 0
      src/AuthenticationServiceInterface.php

+ 8 - 0
src/AuthenticationServiceInterface.php

@@ -21,4 +21,12 @@ interface AuthenticationServiceInterface
      * @return string|bool
      */
     public function queryAuth($user_id, $biz_id);
+
+    /**
+     * 上报用户行为
+     * @param $data
+     * @param $biz_id
+     * @return bool
+     */
+    public function uploadLoginOut($data, $biz_id): bool;
 }