Use Faker methods

Accessing Faker properties was deprecated in Faker 1.14.
This commit is contained in:
Shift
2023-02-19 16:19:02 +00:00
committed by HolgerHatGarKeineNode
parent 5776b01d15
commit e3c175e5fe
15 changed files with 41 additions and 41 deletions

View File

@@ -27,9 +27,9 @@ class MeetupEventFactory extends Factory
'date' => $this->faker->date(),
'start' => $this->faker->time(),
'end' => $this->faker->time(),
'location' => $this->faker->word,
'description' => $this->faker->text,
'link' => $this->faker->word,
'location' => $this->faker->word(),
'description' => $this->faker->text(),
'link' => $this->faker->word(),
];
}
}