Skip to content

Commit e21725f

Browse files
committed
Review changes
1 parent 62367c5 commit e21725f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Helpers/OAuth2/OAuthConfig.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,21 @@ class OAuthConfig
2828
protected string $redirectUri = '';
2929

3030
/**
31-
* The endpoint used to retrieve credentials.
31+
* The endpoint used for the authorization URL.
3232
*
3333
* @var string
3434
*/
3535
protected string $authorizeEndpoint = 'authorize';
3636

3737
/**
38-
* The endpoint used to refresh credentials.
38+
* The endpoint used to create and refresh tokens.
3939
*
4040
* @var string
4141
*/
4242
protected string $tokenEndpoint = 'token';
4343

4444
/**
45-
* The endpoint used to retrieve user information.s
45+
* The endpoint used to retrieve user information.
4646
*
4747
* @var string
4848
*/

src/Helpers/URLHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public static function matches(string $pattern, string $value): bool
1919
}
2020

2121
/**
22-
* Join a domain and an endpoint together.
22+
* Join a base url and an endpoint together.
2323
*
2424
* @param string $baseUrl
2525
* @param string $endpoint

0 commit comments

Comments
 (0)