diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-01-05 21:23:19 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-01-05 21:23:19 -0500 |
commit | 22568325c957f941ccb12751960fe99176ab0643 (patch) | |
tree | 234b37a4443f25b59f846318b0f475d887293505 /app/Auth/GitlabAuth.php | |
parent | 023e0b7d5358ba4b33d198e8cd9e533a47bd3619 (diff) |
Change Auth classes properties to be protected
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 |