Use Faker methods

Accessing Faker properties was deprecated in Faker 1.14.
This commit is contained in:
Shift
2023-05-24 21:32:59 +00:00
parent d0493f3dd0
commit 8a52c4529f
3 changed files with 7 additions and 7 deletions

View File

@@ -19,9 +19,9 @@ class MediaFactory extends Factory
{
return [
'title' => $this->faker->sentence(),
'name' => storage_path('app/public/') . $this->faker->slug() . '.' . $this->faker->fileExtension,
'mime_type' => $this->faker->mimeType,
'user_id' => $this->faker->uuid,
'name' => storage_path('app/public/') . $this->faker->slug() . '.' . $this->faker->fileExtension(),
'mime_type' => $this->faker->mimeType(),
'user_id' => $this->faker->uuid(),
'size' => $this->faker->numberBetween(1000, 1000000),
];
}