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/GithubAuth.php | |
parent | 023e0b7d5358ba4b33d198e8cd9e533a47bd3619 (diff) |
Change Auth classes properties to be protected
Diffstat (limited to 'app/Auth/GithubAuth.php')
-rw-r--r-- | app/Auth/GithubAuth.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app/Auth/GithubAuth.php b/app/Auth/GithubAuth.php index 606ab301..83699581 100644 --- a/app/Auth/GithubAuth.php +++ b/app/Auth/GithubAuth.php @@ -17,26 +17,26 @@ class GithubAuth extends Base implements OAuthAuthenticationProviderInterface /** * User properties * - * @access private + * @access protected * @var \Kanboard\User\GithubUserProvider */ - private $userInfo = null; + protected $userInfo = null; /** * 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 |