Skip to content

Commit

Permalink
Use Str::random and not str_random
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias van Beek committed Sep 4, 2019
1 parent fa3d3cc commit 5c37c2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/MigrateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function handle()
'slug' => 'regina-phalange',
'bio' => 'This is me.',
'email' => '[email protected]',
'password' => Hash::make($password = str_random()),
'password' => Hash::make($password = Str::random()),
]);

$this->line('');
Expand Down

0 comments on commit 5c37c2a

Please sign in to comment.