Passed
Pull Request — master (#662)
by Songda
01:53
created
src/Plugin/Wechat/Shortcut/CloseShortcut.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
             return $this->combinePlugins();
22 22
         }
23 23
 
24
-        $typeMethod = Str::camel($params['_type'] ?? 'default').'Plugins';
24
+        $typeMethod = Str::camel($params['_type'] ?? 'default') . 'Plugins';
25 25
 
26 26
         if (method_exists($this, $typeMethod)) {
27 27
             return $this->{$typeMethod}();
Please login to merge, or discard this patch.
src/Plugin/Wechat/Shortcut/QueryShortcut.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
             return $this->combinePlugins();
23 23
         }
24 24
 
25
-        $typeMethod = Str::camel($params['_type'] ?? 'default').'Plugins';
25
+        $typeMethod = Str::camel($params['_type'] ?? 'default') . 'Plugins';
26 26
 
27 27
         if (method_exists($this, $typeMethod)) {
28 28
             return $this->{$typeMethod}();
Please login to merge, or discard this patch.