Passed
Pull Request — master (#781)
by Songda
02:18
created
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['_action'] ?? 'default').'Plugins';
25
+        $typeMethod = Str::camel($params['_action'] ?? 'default') . 'Plugins';
26 26
 
27 27
         if (method_exists($this, $typeMethod)) {
28 28
             return $this->{$typeMethod}();
Please login to merge, or discard this patch.
src/Plugin/Alipay/Shortcut/QueryShortcut.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      */
20 20
     public function getPlugins(array $params): array
21 21
     {
22
-        $typeMethod = Str::camel($params['_action'] ?? 'default').'Plugins';
22
+        $typeMethod = Str::camel($params['_action'] ?? 'default') . 'Plugins';
23 23
 
24 24
         if (isset($params['out_request_no'])) {
25 25
             return $this->refundPlugins();
Please login to merge, or discard this patch.
src/Plugin/Unipay/Shortcut/QueryShortcut.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      */
18 18
     public function getPlugins(array $params): array
19 19
     {
20
-        $typeMethod = Str::camel($params['_action'] ?? 'default').'Plugins';
20
+        $typeMethod = Str::camel($params['_action'] ?? 'default') . 'Plugins';
21 21
 
22 22
         if (method_exists($this, $typeMethod)) {
23 23
             return $this->{$typeMethod}();
Please login to merge, or discard this patch.
src/Plugin/Unipay/Shortcut/ScanShortcut.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      */
18 18
     public function getPlugins(array $params): array
19 19
     {
20
-        $typeMethod = Str::camel($params['_action'] ?? 'default').'Plugins';
20
+        $typeMethod = Str::camel($params['_action'] ?? 'default') . 'Plugins';
21 21
 
22 22
         if (method_exists($this, $typeMethod)) {
23 23
             return $this->{$typeMethod}();
Please login to merge, or discard this patch.
src/Plugin/Unipay/Shortcut/PosShortcut.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      */
18 18
     public function getPlugins(array $params): array
19 19
     {
20
-        $typeMethod = Str::camel($params['_action'] ?? 'default').'Plugins';
20
+        $typeMethod = Str::camel($params['_action'] ?? 'default') . 'Plugins';
21 21
 
22 22
         if (method_exists($this, $typeMethod)) {
23 23
             return $this->{$typeMethod}();
Please login to merge, or discard this patch.
src/Plugin/Unipay/Shortcut/RefundShortcut.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      */
18 18
     public function getPlugins(array $params): array
19 19
     {
20
-        $typeMethod = Str::camel($params['_action'] ?? 'default').'Plugins';
20
+        $typeMethod = Str::camel($params['_action'] ?? 'default') . 'Plugins';
21 21
 
22 22
         if (method_exists($this, $typeMethod)) {
23 23
             return $this->{$typeMethod}();
Please login to merge, or discard this patch.
src/Plugin/Unipay/Shortcut/CancelShortcut.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      */
18 18
     public function getPlugins(array $params): array
19 19
     {
20
-        $typeMethod = Str::camel($params['_action'] ?? 'default').'Plugins';
20
+        $typeMethod = Str::camel($params['_action'] ?? 'default') . 'Plugins';
21 21
 
22 22
         if (method_exists($this, $typeMethod)) {
23 23
             return $this->{$typeMethod}();
Please login to merge, or discard this patch.
src/Plugin/Wechat/Shortcut/CloseShortcut.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['_action'] ?? 'default').'Plugins';
25
+        $typeMethod = Str::camel($params['_action'] ?? 'default') . 'Plugins';
26 26
 
27 27
         if (method_exists($this, $typeMethod)) {
28 28
             return $this->{$typeMethod}();
Please login to merge, or discard this patch.