Skip to content

Commit f797161

Browse files
lanlinlanlin
lanlin
authored andcommitted
code reformat workflow
1 parent f7b5280 commit f797161

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Management/Account.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -228,15 +228,16 @@ public function revokeAllTokens(string $accountId, ?string $keepAccessToken = nu
228228
*
229229
* @see https://developer.nylas.com/docs/api/v2/#post-/a/client_id/accounts/id/token-info
230230
*
231-
* @param string $accountId
231+
* @param string $accountId
232232
* @param ?string $accessToken
233233
*
234234
* @return array
235235
* @throws GuzzleException
236236
*/
237-
public function returnTokenInformation(string $accountId, string $accessToken = null): array
237+
public function returnTokenInformation(string $accountId, ?string $accessToken = null): array
238238
{
239239
$params = empty($accessToken) ? [] : ['access_token' => $accessToken];
240+
240241
return $this->options
241242
->getSync()
242243
->setPath($this->options->getClientId(), $accountId)

0 commit comments

Comments
 (0)