Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[9.x] Add force option to hash command #1251

Merged
merged 1 commit into from
May 7, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Console/HashCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class HashCommand extends Command
*
* @var string
*/
protected $signature = 'passport:hash';
protected $signature = 'passport:hash {--force : Force the operation to run without confirmation prompt}';

/**
* The console command description.
Expand All @@ -34,7 +34,7 @@ public function handle()
return;
}

if ($this->confirm('Are you sure you want to hash all client secrets? This cannot be undone.')) {
if ($this->option('force') || $this->confirm('Are you sure you want to hash all client secrets? This cannot be undone.')) {
$model = Passport::clientModel();

foreach ((new $model)->whereNotNull('secret')->cursor() as $client) {
Expand Down