});
$factory->define(BookStack\Comment::class, function($faker) {
- $text = $faker->paragraph(3);
+ $text = $faker->paragraph(1);
$html = '<p>' . $text. '</p>';
return [
'html' => $html,
- 'text' => '#' . $text,
- 'active' => 1
+ 'text' => $text,
+ 'parent_id' => null
];
});
\ No newline at end of file