Skip to content

Commit a4e6b0f

Browse files
Change jobTitle() to sentence() in the TaskFactory.php
1 parent f58fee7 commit a4e6b0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/factories/TaskFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function definition(): array
1919
$statuses = ['New', 'In progress', 'Complete', 'Remove'];
2020

2121
return [
22-
'title' => $this->faker->unique()->jobTitle(),
22+
'title' => $this->faker->unique()->sentence(),
2323
'description' => $this->faker->text(),
2424
'status' => $this->faker->randomElement($statuses)
2525
];

0 commit comments

Comments
 (0)