Skip to content

Commit 2760ddb

Browse files
author
Shawn McCool
committed
fixed some typos
1 parent 90e8ecb commit 2760ddb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/DbBackupCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public function fire() {
9797
$this->option('database'),
9898
$this->option('compression'),
9999
$this->option('destination'),
100-
$root . $this->option('destinationPath')
100+
$root .'/'. $this->option('destinationPath')
101101
));
102102
}
103103

src/DbRestoreCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ private function askDatabase() {
179179
$providers = $this->databases->getAvailableProviders();
180180
$formatted = implode(', ', $providers);
181181
$this->info("Available database connections: <comment>{$formatted}</comment>");
182-
$database = $this->autocomplete("From which database connection you want to dump?", $providers);
182+
$database = $this->autocomplete("From which database connection you want to restore?", $providers);
183183
$this->input->setOption('database', $database);
184184
}
185185

0 commit comments

Comments
 (0)