@@ -181,7 +181,7 @@ discard block |
||
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 |
||
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 |
||
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 | } |