Passed
Push — master ( 00776a...9ca1a9 )
by Carlos
05:03 queued 02:15
created
src/OpenPlatform/Authorizer/MiniProgram/Tester/Client.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
      * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
49 49
      * @throws \GuzzleHttp\Exception\GuzzleException
50 50
      */
51
-    public function unbind(string $wechatId = null,  string $userStr = null)
51
+    public function unbind(string $wechatId = null, string $userStr = null)
52 52
     {   
53 53
         return $this->httpPostJson('wxa/unbind_tester', [
54 54
                 ($userStr ? 'userstr' : 'wechatid') => $userStr ?? $wechatId,
Please login to merge, or discard this patch.
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,14 +49,14 @@
 block discarded – undo
49 49
      * @throws \GuzzleHttp\Exception\GuzzleException
50 50
      */
51 51
     public function unbind(string $wechatId = null,  string $userStr = null)
52
-    {   
52
+    {
53 53
         return $this->httpPostJson('wxa/unbind_tester', [
54 54
                 ($userStr ? 'userstr' : 'wechatid') => $userStr ?? $wechatId,
55 55
             ]);
56 56
     }
57 57
     
58 58
     public function unbindWithUserStr(string $userStr)
59
-    {   
59
+    {
60 60
         return $this->httpPostJson('wxa/unbind_tester', [
61 61
                 'userstr' => $userStr,
62 62
             ]);
Please login to merge, or discard this patch.