From 9f4cd6283221b566ac19848684eb5cd9023c783f Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Tue, 17 Nov 2015 15:42:54 +0200 Subject: [PATCH] Add space --- 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 a2bfdc29da8b..a7e6cc4d019a 100644 --- a/app/Console/Commands/SendReminders.php +++ b/app/Console/Commands/SendReminders.php @@ -45,7 +45,7 @@ class SendReminders extends Command foreach ($invoices as $invoice) { if ($reminder = $invoice->getReminder()) { - $this->info('Send to' . $invoice->id); + $this->info('Send to ' . $invoice->id); $this->mailer->sendInvoice($invoice, $reminder); } }