From ddd7857370ec8725a925d50dc7d039447e68ddf8 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 23 Feb 2026 11:49:27 +0000 Subject: [PATCH] style: fix concat_space in ContentItemFactory Co-Authored-By: Claude Opus 4.6 --- Database/Factories/ContentItemFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Database/Factories/ContentItemFactory.php b/Database/Factories/ContentItemFactory.php index 3d629f5..0a31355 100644 --- a/Database/Factories/ContentItemFactory.php +++ b/Database/Factories/ContentItemFactory.php @@ -23,7 +23,7 @@ class ContentItemFactory extends Factory 'slug' => $this->faker->slug(), 'title' => $this->faker->sentence(), 'excerpt' => $this->faker->paragraph(), - 'content_html' => '

' . $this->faker->paragraphs(3, true) . '

', + 'content_html' => '

'.$this->faker->paragraphs(3, true).'

', ]; } }