Skip to content

Commit debc214

Browse files
committed
Apply fixes from StyleCI
1 parent 578d24a commit debc214

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Illuminate/Database/Migrations/Migrator.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,7 @@ protected function pendingMigrations($files, $ran)
152152
$migrationsToSkip = $this->migrationsToSkip();
153153

154154
return (new Collection($files))
155-
->reject(fn ($file) =>
156-
in_array($migrationName = $this->getMigrationName($file), $ran) ||
155+
->reject(fn ($file) => in_array($migrationName = $this->getMigrationName($file), $ran) ||
157156
in_array($migrationName, $migrationsToSkip)
158157
)
159158
->values()

0 commit comments

Comments
 (0)