style: fix concat_space in ContentItemFactory
Some checks failed
CI / PHP 8.4 (push) Failing after 1m40s
CI / PHP 8.3 (push) Failing after 1m53s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Claude 2026-02-23 11:49:27 +00:00
parent 9082c35d3a
commit ddd7857370
No known key found for this signature in database
GPG key ID: AF404715446AEB41

View file

@ -23,7 +23,7 @@ class ContentItemFactory extends Factory
'slug' => $this->faker->slug(),
'title' => $this->faker->sentence(),
'excerpt' => $this->faker->paragraph(),
'content_html' => '<p>' . $this->faker->paragraphs(3, true) . '</p>',
'content_html' => '<p>'.$this->faker->paragraphs(3, true).'</p>',
];
}
}