Skip to content

Commit 21ad5b6

Browse files
Update MsGraph.php
1 parent e129c9d commit 21ad5b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MsGraph.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ public function getTokenData(?string $id = null): ?MsGraphToken
197197
return MsGraphToken::where('user_id', $id)->where('refresh_token', '<>', '')->first();
198198
}
199199

200-
public function storeToken(string $access_token, string $refresh_token, string $expires, int $id, string $email): MsGraphToken
200+
public function storeToken(string $access_token, string $refresh_token, string $expires, string $id, string $email): MsGraphToken
201201
{
202202
return MsGraphToken::updateOrCreate(['user_id' => $id], [
203203
'user_id' => $id,

0 commit comments

Comments
 (0)