Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
jyrkidn authored and github-actions[bot] committed Sep 19, 2023
1 parent 4112c5b commit 7b6a3c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.php
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ function replaceForAllOtherOSes(): array
match (true) {
str_contains($file, determineSeparator('src/Providers/SkeletonServiceProvider.php')) => rename($file, determineSeparator('./src/Providers/' . $className . 'ServiceProvider.php')),
str_contains($file, determineSeparator('config/skeleton.php')) => rename($file, determineSeparator('./config/' . $packageSlugWithoutPrefix . '.php')),
str_contains($file, determineSeparator('database/migrations/create_package_table.php')) => rename($file, determineSeparator('./database/migrations/create_' . title_snake($packageSlugWithoutPrefix) . '_table.php')),
str_contains($file, determineSeparator('database/migrations/create_package_table.php')) => rename($file, determineSeparator('./database/migrations/create_' . title_snake($packageSlugWithoutPrefix) . '_table.php')),
str_contains($file, 'README.md') => remove_readme_paragraphs($file),
default => [],
};
Expand Down

0 comments on commit 7b6a3c2

Please sign in to comment.