option('from'); $to = (string) ($this->option('to') ?: now()->toDateString()); $this->info("Backfilling Brent ({$from} → {$to}) from FRED..."); try { $count = $fetcher->backfillFromFred($from, $to); $this->info(sprintf('Upserted %d Brent rows.', $count)); return self::SUCCESS; } catch (BrentPriceFetchException $e) { $this->error('FRED backfill failed: '.$e->getMessage()); return self::FAILURE; } } }