Skip to content

Commit

Permalink
Merge pull request #197 from TJVB/laravel_6_changes
Browse files Browse the repository at this point in the history
Use the Str class and not the str_random helper
  • Loading branch information
themsaid committed Sep 5, 2019
2 parents fa3d3cc + 5c37c2a commit dbfcc41
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 dbfcc41

Please sign in to comment.