Skip to content

Commit

Permalink
Add missing linebreak
Browse files Browse the repository at this point in the history
  • Loading branch information
andig committed Aug 4, 2018
1 parent c66bc88 commit 9789b8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/View/Text.php
Expand Up @@ -70,7 +70,7 @@ protected function addDebug(Util\Debug $debug) {
echo "database:\t" . Util\Configuration::read('db.driver') . PHP_EOL;
echo "time:\t" . $debug->getExecutionTime() . PHP_EOL;

if ($uptime = Util\Debug::getUptime()) echo "uptime:\t" . $uptime*1000;
if ($uptime = Util\Debug::getUptime()) echo "uptime:\t" . $uptime*1000 . PHP_EOL;
if ($load = Util\Debug::getLoadAvg()) echo "load:\t" . implode(', ', $load) . PHP_EOL;
if ($commit = Util\Debug::getCurrentCommit()) echo "commit-hash:\t" . $commit . PHP_EOL;
if ($version = phpversion()) echo "php-version:\t" . $version . PHP_EOL;
Expand Down

0 comments on commit 9789b8b

Please sign in to comment.