Skip to content

Commit 1f7f915

Browse files
authored
Merge pull request laravel#4521 from SjorsO/patch-1
Add comment with the value of the hashed password
2 parents f693a20 + c3d3dc1 commit 1f7f915

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/factories/UserFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
return [
1818
'name' => $faker->name,
1919
'email' => $faker->unique()->safeEmail,
20-
'password' => '$2y$10$TKh8H1.PfQx37YgCzwiKb.KjNyWgaHb9cbcoQgdIVFlYg7B77UdFm',
20+
'password' => '$2y$10$TKh8H1.PfQx37YgCzwiKb.KjNyWgaHb9cbcoQgdIVFlYg7B77UdFm', // secret
2121
'remember_token' => str_random(10),
2222
];
2323
});

0 commit comments

Comments
 (0)