Skip to content

Commit

Permalink
Merge branch 'master' into 3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
ramsey committed Dec 18, 2024
2 parents af02dc9 + 8dc01b2 commit 8069ff9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Provider/AbstractProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,8 @@ protected function getPkceMethod()
* @param array<string, mixed> $options
*
* @return array<string, mixed> Authorization parameters
*
* @throws InvalidArgumentException
*/
protected function getAuthorizationParameters(array $options)
{
Expand Down Expand Up @@ -495,6 +497,8 @@ protected function getAuthorizationQuery(array $params)
* @param array<string, mixed> $options
*
* @return string Authorization URL
*
* @throws InvalidArgumentException
*/
public function getAuthorizationUrl(array $options = [])
{
Expand All @@ -511,6 +515,8 @@ public function getAuthorizationUrl(array $options = [])
* @param array<string, mixed> $options
*
* @return mixed
*
* @throws InvalidArgumentException
*/
public function authorize(
array $options = [],
Expand Down Expand Up @@ -641,6 +647,7 @@ protected function getAccessTokenRequest(array $params)
*
* @throws ClientExceptionInterface
* @throws IdentityProviderException
* @throws UnexpectedValueException
*/
public function getAccessToken(mixed $grant, array $options = [])
{
Expand Down Expand Up @@ -763,6 +770,7 @@ public function getResponse(RequestInterface $request)
*
* @throws ClientExceptionInterface
* @throws IdentityProviderException
* @throws UnexpectedValueException
*/
public function getParsedResponse(RequestInterface $request)
{
Expand Down

0 comments on commit 8069ff9

Please sign in to comment.