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:
authorVitor Mattos <vitor@php.rio>2022-05-06 17:53:16 +0300
committerGitHub <noreply@github.com>2022-05-06 17:53:16 +0300
commit269a502e387df4ceb759d7df21f7ca750b63ca05 (patch)
treea93cef0eca72713467d1b85339a57257d99ec44e
parentcef5fdff81e46ccc49a0e6fbf1cd848e67f6a124 (diff)
Update Configure.php
-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 7d6330a..a67a203 100644
--- a/lib/Command/Configure.php
+++ b/lib/Command/Configure.php
@@ -360,8 +360,8 @@ class Configure extends Command {
/** @var SMSGlobalConfig $providerConfig */
$providerConfig = $config->getProvider()->getConfig();
- $urlproposal='https://api.smsglobal.com/http-api.php';
- $urlQuestion = new Question('Please enter your SMSGlobal http-api:',$urlproposal);
+ $urlproposal = 'https://api.smsglobal.com/http-api.php';
+ $urlQuestion = new Question('Please enter your SMSGlobal http-api:', $urlproposal);
$url = $helper->ask($input, $output, $urlQuestion);
$usernameQuestion = new Question('Please enter your SMSGlobal username (for http-api):');
$username = $helper->ask($input, $output, $usernameQuestion);