From 143b65ad9fed925edbb26de6702079cf99ca4d2a Mon Sep 17 00:00:00 2001 From: Wim de Ruijter Date: Mon, 11 Feb 2019 11:34:22 +0100 Subject: [PATCH] Made clear what "account with reminders" means --- app/Console/Commands/SendReminders.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/SendReminders.php b/app/Console/Commands/SendReminders.php index d5eb93b1663d..e42092c57259 100644 --- a/app/Console/Commands/SendReminders.php +++ b/app/Console/Commands/SendReminders.php @@ -152,7 +152,7 @@ class SendReminders extends Command private function sendReminderEmails() { $accounts = $this->accountRepo->findWithReminders(); - $this->info(date('r ') . count($accounts) . ' accounts found with reminders'); + $this->info(date('r ') . count($accounts) . ' accounts found with reminders enabled'); foreach ($accounts as $account) { if (! $account->hasFeature(FEATURE_EMAIL_TEMPLATES_REMINDERS)) {