Skip to content

Commit

Permalink
change method name
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Aug 27, 2020
1 parent 77cdbe1 commit 256f71c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Illuminate/Foundation/Testing/RefreshDatabase.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ protected function migrateUsing()
protected function refreshTestDatabase()
{
if (! RefreshDatabaseState::$migrated) {
$this->artisan('migrate:fresh', $this->freshMigrateUsing());
$this->artisan('migrate:fresh', $this->migrateFreshUsing());

$this->app[Kernel::class]->setArtisan(null);

Expand All @@ -75,7 +75,7 @@ protected function refreshTestDatabase()
*
* @return array
*/
protected function freshMigrateUsing()
protected function migrateFreshUsing()
{
return [
'--drop-views' => $this->shouldDropViews(),
Expand Down

0 comments on commit 256f71c

Please sign in to comment.