Skip to content

Commit ec6656c

Browse files
committed
refs #955: set public all constants
1 parent c9cf54e commit ec6656c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/Github/AuthMethod.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ final class AuthMethod
99
*
1010
* @var string
1111
*/
12-
const CLIENT_ID = 'client_id_header';
12+
public const CLIENT_ID = 'client_id_header';
1313

1414
/**
1515
* Authenticate using a GitHub access token.
1616
*
1717
* @var string
1818
*/
19-
const ACCESS_TOKEN = 'access_token_header';
19+
public const ACCESS_TOKEN = 'access_token_header';
2020

2121
/**
2222
* Constant for authentication method.
@@ -26,5 +26,5 @@ final class AuthMethod
2626
*
2727
* @var string
2828
*/
29-
const JWT = 'jwt';
29+
public const JWT = 'jwt';
3030
}

0 commit comments

Comments
 (0)