Completed
Push — master ( 9473ea...cfd0e6 )
by Michał
05:47
created
id/protocols/oauth1/Signer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     protected function normalizeParameters(array $params) : array
96 96
     {
97 97
         // Recursively percent encode each key/value pair in the params.
98
-        array_walk_recursive($params, function (&$key, &$value) {
98
+        array_walk_recursive($params, function(&$key, &$value) {
99 99
             $key   = rawurlencode(rawurldecode($key));
100 100
             $value = rawurlencode(rawurldecode($value));
101 101
         });
@@ -152,6 +152,6 @@  discard block
 block discarded – undo
152 152
     {
153 153
         // The joining ampersand after the encoded Client's secret is correctly left in even if no Token is being
154 154
         // included in the key.
155
-        return rawurlencode($client->getSecret()) . '&' . (isset($token) ? rawurlencode($token->getSecret()) : '');
155
+        return rawurlencode($client->getSecret()).'&'.(isset($token) ? rawurlencode($token->getSecret()) : '');
156 156
     }
157 157
 }
Please login to merge, or discard this patch.