Skip to content

Commit 256f71c

Browse files
committed
change method name
1 parent 77cdbe1 commit 256f71c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Illuminate/Foundation/Testing/RefreshDatabase.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ protected function migrateUsing()
6060
protected function refreshTestDatabase()
6161
{
6262
if (! RefreshDatabaseState::$migrated) {
63-
$this->artisan('migrate:fresh', $this->freshMigrateUsing());
63+
$this->artisan('migrate:fresh', $this->migrateFreshUsing());
6464

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

@@ -75,7 +75,7 @@ protected function refreshTestDatabase()
7575
*
7676
* @return array
7777
*/
78-
protected function freshMigrateUsing()
78+
protected function migrateFreshUsing()
7979
{
8080
return [
8181
'--drop-views' => $this->shouldDropViews(),

0 commit comments

Comments
 (0)