diff options
Diffstat (limited to 'app/Auth/GitlabAuth.php')
-rw-r--r-- | app/Auth/GitlabAuth.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/Auth/GitlabAuth.php b/app/Auth/GitlabAuth.php index 084e8ab9..c0a2cf9b 100644 --- a/app/Auth/GitlabAuth.php +++ b/app/Auth/GitlabAuth.php @@ -25,18 +25,18 @@ class GitlabAuth extends Base implements OAuthAuthenticationProviderInterface /** * OAuth2 instance * - * @access private + * @access protected * @var \Kanboard\Core\Http\OAuth2 */ - private $service; + protected $service; /** * OAuth2 code * - * @access private + * @access protected * @var string */ - private $code = ''; + protected $code = ''; /** * Get authentication provider name |