[8.x] Using faker method instead of properties (#5583)

After Faker PHP 1.14 using properties is deprecated and is recommended to use methods instead.
This commit is contained in:
JuanDMeGon
2021-04-13 07:28:01 -05:00
committed by GitHub
parent 5474127548
commit 0e8e9a0727

View File

@@ -23,8 +23,8 @@ class UserFactory extends Factory
public function definition() public function definition()
{ {
return [ return [
'name' => $this->faker->name, 'name' => $this->faker->name(),
'email' => $this->faker->unique()->safeEmail, 'email' => $this->faker->unique()->safeEmail(),
'email_verified_at' => now(), 'email_verified_at' => now(),
'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
'remember_token' => Str::random(10), 'remember_token' => Str::random(10),