����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.147.63.135 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/bofirm.gltechlimited.com/vendor/laravel/passport/src/Console/ |
Upload File : |
<?php namespace Laravel\Passport\Console; use Illuminate\Console\Command; use Laravel\Passport\Passport; class HashCommand extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'passport:hash {--force : Force the operation to run without confirmation prompt}'; /** * The console command description. * * @var string */ protected $description = 'Hash all of the existing secrets in the clients table'; /** * Execute the console command. * * @return void */ public function handle() { if (! Passport::$hashesClientSecrets) { $this->warn('Please enable client hashing yet in your AppServiceProvider before continuing.'); return; } 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) { if (password_get_info($client->secret)['algo'] === PASSWORD_BCRYPT) { continue; } $client->timestamps = false; $client->forceFill([ 'secret' => $client->secret, ])->save(); } $this->info('All client secrets were successfully hashed.'); } } }