Skip to content
This repository has been archived by the owner on May 26, 2021. It is now read-only.

Commit

Permalink
Format fixing.
Browse files Browse the repository at this point in the history
  • Loading branch information
skyzyx committed Feb 12, 2015
1 parent 7050b68 commit 4673bca
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Signer/Signer.php
Expand Up @@ -203,15 +203,15 @@ private function getSigningSalt($self_key, $client_id, $client_secret)
$salt = hash_hmac($this->hash_algo, 'signer', $client_id_sign, true);

$this->logger->debug(__FUNCTION__, [
'input' => [
'self_key' => $self_key,
'client_id' => $client_id,
'client_secret' => $client_secret,
'input' => [
'self_key' => $self_key,
'client_id' => $client_id,
'client_secret' => $client_secret,
],
'output' => [
'self_key_sign' => $self_key_sign,
'self_key_sign' => $self_key_sign,
'client_id_sign' => $client_id_sign,
'salt' => $salt,
'salt' => $salt,
],
]);

Expand Down

0 comments on commit 4673bca

Please sign in to comment.