From 273f67e88351c1fe55badbfd674b06f967883614 Mon Sep 17 00:00:00 2001 From: hackerESQ Date: Sun, 15 Sep 2024 23:46:24 -0500 Subject: [PATCH] formatting for tui --- app/Console/Commands/SyncDailyChange.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/SyncDailyChange.php b/app/Console/Commands/SyncDailyChange.php index 34c2f21..3171aab 100644 --- a/app/Console/Commands/SyncDailyChange.php +++ b/app/Console/Commands/SyncDailyChange.php @@ -64,11 +64,11 @@ class SyncDailyChange extends Command implements PromptsForMissingInput $portfolio = Portfolio::findOrFail($this->argument('portfolio_id')); - $this->output->write('Syncing daily change history... This may take a moment.', false); + $this->line('Syncing daily change history... This may take a moment.'); $portfolio->syncDailyChanges(); - $this->output->write('Awesome! Daily change history for '. $portfolio->title .' has been completed.', false); + $this->line('Awesome! Daily change history for '. $portfolio->title .' has been completed.'); } catch (\Throwable $e) {