Passed
Push — master ( 9cc9e4...79f76b )
by frey
04:31
created
src/Plugins/GetFederationTokenV3.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
             '%s Credential=%s/%s, SignedHeaders=%s, Signature=%s',
182 182
             'TC3-HMAC-SHA256',
183 183
             $this->getCredentials()['secretId'],
184
-            date('Y-m-d', $timestamp) . '/sts/tc3_request',
184
+            date('Y-m-d', $timestamp).'/sts/tc3_request',
185 185
             'content-type;host',
186 186
             hash_hmac(
187 187
                 'SHA256',
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
         return hash_hmac('SHA256', 'tc3_request',
202 202
             hash_hmac('SHA256', 'sts',
203 203
                 hash_hmac('SHA256', date('Y-m-d', $timestamp),
204
-                    'TC3' . $this->getCredentials()['secretKey'], true
204
+                    'TC3'.$this->getCredentials()['secretKey'], true
205 205
                 ), true
206 206
             ), true
207 207
         );
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
         return implode("\n", [
240 240
             'TC3-HMAC-SHA256',
241 241
             $timestamp,
242
-            date('Y-m-d', $timestamp) . '/sts/tc3_request',
242
+            date('Y-m-d', $timestamp).'/sts/tc3_request',
243 243
             hash('SHA256', $this->getCanonicalRequest($args)),
244 244
         ]);
245 245
     }
Please login to merge, or discard this patch.