From 77fc89a7cd7793a1bd66c2b90a162f1d926e2c5a Mon Sep 17 00:00:00 2001 From: sparkyx Date: Thu, 2 Apr 2026 11:32:05 +0200 Subject: [PATCH] OTP : get options --- vendor/chillerlan/php-authenticator/src/Authenticator.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vendor/chillerlan/php-authenticator/src/Authenticator.php b/vendor/chillerlan/php-authenticator/src/Authenticator.php index b36af9cdc..22105b464 100644 --- a/vendor/chillerlan/php-authenticator/src/Authenticator.php +++ b/vendor/chillerlan/php-authenticator/src/Authenticator.php @@ -164,5 +164,8 @@ class Authenticator{ return sprintf('otpauth://%s/%s?%s', $this->mode, rawurlencode($label), $values); } - + function getOptions() + { + return $this->options; + } }