Skip to content

Commit 4531871

Browse files
authored
Merge pull request #4 from yipeecaiey/master
Merge typo fixes from @phpdreams
2 parents cccd891 + e485ba4 commit 4531871

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
@@ -331,7 +331,7 @@ public function getPasswordResetValues($table)
331331
*
332332
* @return bool
333333
*/
334-
public function needsRefrseh()
334+
public function needsRefresh()
335335
{
336336
return $this->refresh;
337337
}

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)