Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/twofactor_gateway.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlav Seyfarth <nursoda@users.noreply.github.com>2020-01-19 02:34:49 +0300
committerGitHub <noreply@github.com>2020-01-19 02:34:49 +0300
commit0271dc574453af546573cb3e02b2f2830f5e8e89 (patch)
treedc91885add94d0b1d341c089fb14a30672ae5221
parentd0f83bb521b224fb5badb94efab464c215d7c8b8 (diff)
Add sms77 to help and fix case selection string
Signed-off-by: Olav Seyfarth <nursoda@users.noreply.github.com>
-rw-r--r--lib/Command/Configure.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Command/Configure.php b/lib/Command/Configure.php
index 8808cf2..2c1ac0b 100644
--- a/lib/Command/Configure.php
+++ b/lib/Command/Configure.php
@@ -105,7 +105,7 @@ class Configure extends Command {
private function configureSms(InputInterface $input, OutputInterface $output) {
$helper = $this->getHelper('question');
- $providerQuestion = new Question('Please choose a SMS provider (websms, playsms, clockworksms, puzzelsms, ecallsms, voipms, huawei_e3531, spryng): ', 'websms');
+ $providerQuestion = new Question('Please choose a SMS provider (websms, playsms, clockworksms, puzzelsms, ecallsms, voipms, huawei_e3531, spryng, sms77io): ', 'websms');
$provider = $helper->ask($input, $output, $providerQuestion);
/** @var SMSConfig $config */
@@ -236,7 +236,7 @@ class Configure extends Command {
break;
- case 'sms77':
+ case 'sms77io':
$config->setProvider($provider);
/** @var Sms77IoConfig $providerConfig */
$providerConfig = $config->getProvider()->getConfig();