Skip to content

Commit

Permalink
fix: passing PHP_EOL as COLOR constant
Browse files Browse the repository at this point in the history
  • Loading branch information
TiSiE committed Sep 23, 2020
1 parent e7afea3 commit ff066a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Controller/ConsoleController.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit ff066a9

Please sign in to comment.