Completed
Push — master ( d61ccd...74eea6 )
by Alexandre
03:47
created
src/Extensions/OpenID/AuthorizationGrantTypes/Flows/ImplicitFlow.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/Endpoints/AuthorizationRequestBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.