diff options
Diffstat (limited to 'app/Auth/GoogleAuth.php')
-rw-r--r-- | app/Auth/GoogleAuth.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app/Auth/GoogleAuth.php b/app/Auth/GoogleAuth.php index 2a1f1b46..6eacf0b0 100644 --- a/app/Auth/GoogleAuth.php +++ b/app/Auth/GoogleAuth.php @@ -17,26 +17,26 @@ class GoogleAuth extends Base implements OAuthAuthenticationProviderInterface /** * User properties * - * @access private + * @access protected * @var \Kanboard\User\GoogleUserProvider */ - 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 |