Skip to content

Commit

Permalink
Fix an error with Microsoft Entra
Browse files Browse the repository at this point in the history
  • Loading branch information
engram-design committed Sep 12, 2024
1 parent 572ace9 commit 5f4c6fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/providers/MicrosoftEntra.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ class MicrosoftEntra extends MicrosoftEntraProvider
// Public Methods
// =========================================================================

public function getBaseApiUrl(?Token $token): ?string
public function getBaseApiUrl(): ?string
{
return 'https://graph.microsoft.com/v1.0/';
}

public function getApiRequestQueryParams(?Token $token): array
public function getApiRequestQueryParams(Token $token): array
{
return [
'access_token' => (string)$token->getToken(),
Expand Down

0 comments on commit 5f4c6fc

Please sign in to comment.