We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77cdbe1 commit 256f71cCopy full SHA for 256f71c
src/Illuminate/Foundation/Testing/RefreshDatabase.php
@@ -60,7 +60,7 @@ protected function migrateUsing()
60
protected function refreshTestDatabase()
61
{
62
if (! RefreshDatabaseState::$migrated) {
63
- $this->artisan('migrate:fresh', $this->freshMigrateUsing());
+ $this->artisan('migrate:fresh', $this->migrateFreshUsing());
64
65
$this->app[Kernel::class]->setArtisan(null);
66
@@ -75,7 +75,7 @@ protected function refreshTestDatabase()
75
*
76
* @return array
77
*/
78
- protected function freshMigrateUsing()
+ protected function migrateFreshUsing()
79
80
return [
81
'--drop-views' => $this->shouldDropViews(),
0 commit comments