diff options
Diffstat (limited to 'app/Auth/TotpAuth.php')
-rw-r--r-- | app/Auth/TotpAuth.php | 8 |
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 |