summaryrefslogtreecommitdiff
path: root/app/Auth/TotpAuth.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-01-05 21:23:19 -0500
committerFrederic Guillot <fred@kanboard.net>2016-01-05 21:23:19 -0500
commit22568325c957f941ccb12751960fe99176ab0643 (patch)
tree234b37a4443f25b59f846318b0f475d887293505 /app/Auth/TotpAuth.php
parent023e0b7d5358ba4b33d198e8cd9e533a47bd3619 (diff)
Change Auth classes properties to be protected
Diffstat (limited to 'app/Auth/TotpAuth.php')
-rw-r--r--app/Auth/TotpAuth.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/Auth/TotpAuth.php b/app/Auth/TotpAuth.php
index e1cc712c..f4304930 100644
--- a/app/Auth/TotpAuth.php
+++ b/app/Auth/TotpAuth.php
@@ -19,18 +19,18 @@ class TotpAuth extends Base implements PostAuthenticationProviderInterface
/**
* User pin code
*
- * @access private
+ * @access protected
* @var string
*/
- private $code = '';
+ protected $code = '';
/**
* Private key
*
- * @access private
+ * @access protected
* @var string
*/
- private $secret = '';
+ protected $secret = '';
/**
* Get authentication provider name