From 48c3b5fcffdd7fce58e827399e5afe55706e0f48 Mon Sep 17 00:00:00 2001 From: Wim de Ruijter Date: Mon, 11 Feb 2019 21:12:42 +0100 Subject: [PATCH] Made clear what "account with fees" means (#2664) Should have done this in the previous PR: https://github.com/invoiceninja/invoiceninja/pull/2663 --- 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 e42092c57259..3e59124c5da6 100644 --- a/app/Console/Commands/SendReminders.php +++ b/app/Console/Commands/SendReminders.php @@ -125,7 +125,7 @@ class SendReminders extends Command private function chargeLateFees() { $accounts = $this->accountRepo->findWithFees(); - $this->info(date('r ') . $accounts->count() . ' accounts found with fees'); + $this->info(date('r ') . $accounts->count() . ' accounts found with fees enabled'); foreach ($accounts as $account) { if (! $account->hasFeature(FEATURE_EMAIL_TEMPLATES_REMINDERS)) {