Passed
Push — master ( 898ee1...a00989 )
by Gregorio
02:43
created
src/Pipes/DataSetKey.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function pipe($options = [])
15 15
     {
16
-        return function ($inputData) use ($options) {
16
+        return function($inputData) use ($options) {
17 17
             return Arr::set($inputData, Arr::get($options, 'key'), Arr::get($options, 'value'));
18 18
         };
19 19
     }
Please login to merge, or discard this patch.
src/Pipes/DataMerge.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function pipe($options = [])
15 15
     {
16
-        return function ($inputData) use ($options) {
16
+        return function($inputData) use ($options) {
17 17
             return array_merge($inputData, Arr::get($options, 'data'));
18 18
         };
19 19
     }
Please login to merge, or discard this patch.
src/Connectors/Http.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@
 block discarded – undo
139 139
                 break;
140 140
             case self::AUTH_OAUTH2:
141 141
                 $authClient = new Client(['base_uri' => $config['uri']]);
142
-                $grantType = '\\kamermans\\OAuth2\\GrantType\\'.studly_case($config['grant_type']);
142
+                $grantType = '\\kamermans\\OAuth2\\GrantType\\' . studly_case($config['grant_type']);
143 143
                 unset($config['uri']);
144 144
                 unset($config['grant_type']);
145 145
                 /** @var \kamermans\OAuth2\GrantType\GrantTypeInterface $grant_type */
Please login to merge, or discard this patch.