friendlyInfo('Will recalculate account balances. This may take a LONG time. Please be patient.'); $this->correctBalanceAmounts($this->option('force')); $this->friendlyInfo('Done recalculating account balances.'); return 0; } $this->friendlyWarning('This command has been disabled.'); } private function correctBalanceAmounts(bool $forced): void { AccountBalanceCalculator::recalculateAll($forced); } }