@@ -724,7 +724,7 @@ public function getSubjectTokenFetcher(): ?ExternalAccountCredentialSourceInterf
724724 */
725725 public function parseTokenResponse (ResponseInterface $ resp )
726726 {
727- $ body = (string )$ resp ->getBody ();
727+ $ body = (string ) $ resp ->getBody ();
728728 if ($ resp ->hasHeader ('Content-Type ' ) &&
729729 $ resp ->getHeaderLine ('Content-Type ' ) == 'application/x-www-form-urlencoded '
730730 ) {
@@ -1009,13 +1009,13 @@ public function setRedirectUri($uri)
10091009 if (!$ this ->isAbsoluteUri ($ uri )) {
10101010 // "postmessage" is a reserved URI string in Google-land
10111011 // @see https://developers.google.com/identity/sign-in/web/server-side-flow
1012- if ('postmessage ' !== (string )$ uri ) {
1012+ if ('postmessage ' !== (string ) $ uri ) {
10131013 throw new InvalidArgumentException (
10141014 'Redirect URI must be absolute '
10151015 );
10161016 }
10171017 }
1018- $ this ->redirectUri = (string )$ uri ;
1018+ $ this ->redirectUri = (string ) $ uri ;
10191019 }
10201020
10211021 /**
@@ -1127,7 +1127,7 @@ public function setGrantType($grantType)
11271127 'invalid grant type '
11281128 );
11291129 }
1130- $ this ->grantType = (string )$ grantType ;
1130+ $ this ->grantType = (string ) $ grantType ;
11311131 }
11321132 }
11331133
@@ -1460,7 +1460,7 @@ public function setExpiresIn($expiresIn)
14601460 $ this ->issuedAt = null ;
14611461 } else {
14621462 $ this ->issuedAt = time ();
1463- $ this ->expiresIn = (int )$ expiresIn ;
1463+ $ this ->expiresIn = (int ) $ expiresIn ;
14641464 }
14651465 }
14661466
@@ -1768,7 +1768,8 @@ private function getFirebaseJwtKeys($publicKey, $allowedAlgs)
17681768 throw new \InvalidArgumentException (
17691769 'To have multiple allowed algorithms, You must provide an '
17701770 . ' array of Firebase\JWT\Key objects. '
1771- . ' See https://github.com/firebase/php-jwt for more information. ' );
1771+ . ' See https://github.com/firebase/php-jwt for more information. '
1772+ );
17721773 }
17731774 $ allowedAlg = array_pop ($ allowedAlgs );
17741775 } else {
0 commit comments