@@ -126,7 +126,7 @@ |
||
126 | 126 | if (!in_array($macAlgorithm, [256, 384, 512])) { |
127 | 127 | throw new \UnexpectedValueException("Algotihmn '".$macAlgorithm."' not supported"); |
128 | 128 | } |
129 | - $macAlgorithm = 'sha' . $macAlgorithm; |
|
129 | + $macAlgorithm = 'sha'.$macAlgorithm; |
|
130 | 130 | |
131 | 131 | |
132 | 132 | $atHash = hash($macAlgorithm, $accessToken['access_token'], true); |
@@ -172,7 +172,7 @@ |
||
172 | 172 | } |
173 | 173 | } catch (\InvalidArgumentException $e) { |
174 | 174 | throw new OAuthException('invalid_request', |
175 | - 'The request includes the malformed parameter redirect_uri. ' . $e->getMessage(), |
|
175 | + 'The request includes the malformed parameter redirect_uri. '.$e->getMessage(), |
|
176 | 176 | 'https://tools.ietf.org/html/rfc6749#section-4.1'); |
177 | 177 | } |
178 | 178 |