summaryrefslogtreecommitdiffstats
path: root/lib/Command/Reset.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Command/Reset.php')
-rw-r--r--lib/Command/Reset.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Command/Reset.php b/lib/Command/Reset.php
index d3f9e459..0ce23b1a 100644
--- a/lib/Command/Reset.php
+++ b/lib/Command/Reset.php
@@ -124,7 +124,7 @@ class Reset extends Base {
$output->writeln('');
- $cloudAddress = $this->configService->getCloudAddress();
+ $cloudAddress = $this->configService->getCloudUrl();
$question = new Question(
'<info>Now is a good time to change the base address of your cloud: </info> ('
. $cloudAddress . ') ',
@@ -137,7 +137,7 @@ class Reset extends Base {
return;
}
- $this->configService->setCloudAddress($newCloudAddress);
+ $this->configService->setCloudUrl($newCloudAddress);
$output->writeln('');
$output->writeln('New address: <info>' . $newCloudAddress . '</info>');
}