From ff066a9bb65f9e7813a9288806cf85f712cc034c Mon Sep 17 00:00:00 2001 From: Mathias Gelhausen Date: Wed, 23 Sep 2020 17:54:56 +0200 Subject: [PATCH] fix: passing PHP_EOL as COLOR constant --- src/Controller/ConsoleController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/ConsoleController.php b/src/Controller/ConsoleController.php index 6c92c64..db2bd47 100644 --- a/src/Controller/ConsoleController.php +++ b/src/Controller/ConsoleController.php @@ -115,7 +115,7 @@ public function activeJobIndexAction() $upper = ($skip + $limit); $total = $jobs->count(); $upper = $upper > $total ? $total : $upper; - $console->writeLine("Processing jobs $skip - $upper of $total", PHP_EOL); + $console->writeLine("Processing jobs $skip - $upper of $total" . PHP_EOL); } else { $console->writeLine("Found $count jobs." . PHP_EOL); }