From 22568325c957f941ccb12751960fe99176ab0643 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Tue, 5 Jan 2016 21:23:19 -0500 Subject: Change Auth classes properties to be protected --- app/Auth/GithubAuth.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'app/Auth/GithubAuth.php') 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 -- cgit v1.2.3