option('force') && !$this->confirm('This will PERMANENTLY delete all CA files from the CDN. Continue?')) { $this->info('Operation cancelled.'); return 0; } $this->info('Purging CDN assets...'); try { $sslService->purgeAllCaFromCdn(); $this->info('CDN successfully purged and local sync status reset.'); } catch (\Exception $e) { $this->error('Purge failed: ' . $e->getMessage()); return 1; } return 0; } }