Skip to content

Commit

Permalink
fix: typo when deleting migration files
Browse files Browse the repository at this point in the history
Signed-off-by: Ayax Córdova <ayax.cordova@aydev.mx>
  • Loading branch information
asciito committed Sep 24, 2023
1 parent 050bbd7 commit 347db3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workbench/tests/ServiceProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ protected function deletePublishable(): void
);

collect(File::files(database_path('migrations')))
->filter(fn (SplFileInfo $file) => $file->getExtension() === '.php')
->filter(fn (SplFileInfo $file) => $file->getExtension() === 'php')
->each(fn (SplFileInfo $file) => File::delete($file));
}
}

0 comments on commit 347db3b

Please sign in to comment.