Skip to content

Commit 5a44cbd

Browse files
committed
format
1 parent b97a137 commit 5a44cbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Providers/LlmsTxtServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ protected function registerIndividualPostRoutes(): void
8080
{
8181
if (config('llms-txt.individual_posts.enabled', false)) {
8282
$postTypesPattern = implode('|', config('llms-txt.individual_posts.post_types', ['post', 'page']));
83-
Route::get("{postType}-{slug}.txt", [LlmsTxtController::class, 'individual'])
83+
Route::get('{postType}-{slug}.txt', [LlmsTxtController::class, 'individual'])
8484
->where('postType', $postTypesPattern)
8585
->where('slug', '.+');
8686
}

0 commit comments

Comments
 (0)