Skip to content

Commit 245fac9

Browse files
committed
Fix some typos….I’m just anal about such things. :)
1 parent 7c69896 commit 245fac9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Import.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ public function getPasswordResetValues($table)
287287
*
288288
* @return bool
289289
*/
290-
public function needsRefrseh()
290+
public function needsRefresh()
291291
{
292292
return $this->refresh;
293293
}

src/ImportCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class ImportCommand extends Command
3131
*
3232
* @var string
3333
*/
34-
protected $description = 'Import data from a source database to a destionation database';
34+
protected $description = 'Import data from a source database to a destination database';
3535

3636
/**
3737
* Import to execute
@@ -118,7 +118,7 @@ public function handle()
118118
{
119119
if ($this->boot()) {
120120
$this->bar->start();
121-
if ($this->import->needsRefrseh()) {
121+
if ($this->import->needsRefresh()) {
122122
$this->bar->setMessage('Refreshing');
123123
Artisan::call('migrate:refresh');
124124
}

0 commit comments

Comments
 (0)