Skip to content

Commit 4fa264d

Browse files
authored
Fix typo in function name (#46326)
1 parent 664f095 commit 4fa264d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Illuminate/Database/Console/Migrations/MigrateCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ protected function repositoryExists()
138138
return retry(2, fn () => $this->migrator->repositoryExists(), 0, function ($e) {
139139
try {
140140
if ($e->getPrevious() instanceof SQLiteDatabaseDoesNotExistException) {
141-
return $this->createMissingSqliteDatbase($e->getPrevious()->path);
141+
return $this->createMissingSqliteDatabase($e->getPrevious()->path);
142142
}
143143

144144
$connection = $this->migrator->resolveConnection($this->option('database'));
@@ -163,7 +163,7 @@ protected function repositoryExists()
163163
* @param string $path
164164
* @return bool
165165
*/
166-
protected function createMissingSqliteDatbase($path)
166+
protected function createMissingSqliteDatabase($path)
167167
{
168168
if ($this->option('force')) {
169169
return touch($path);

0 commit comments

Comments
 (0)