We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 578d24a commit debc214Copy full SHA for debc214
src/Illuminate/Database/Migrations/Migrator.php
@@ -152,8 +152,7 @@ protected function pendingMigrations($files, $ran)
152
$migrationsToSkip = $this->migrationsToSkip();
153
154
return (new Collection($files))
155
- ->reject(fn ($file) =>
156
- in_array($migrationName = $this->getMigrationName($file), $ran) ||
+ ->reject(fn ($file) => in_array($migrationName = $this->getMigrationName($file), $ran) ||
157
in_array($migrationName, $migrationsToSkip)
158
)
159
->values()
0 commit comments