Skip to content

Commit

Permalink
Removed last EOL from getWholeFile method
Browse files Browse the repository at this point in the history
  • Loading branch information
JakubOnderka committed Apr 25, 2014
1 parent 3290f1f commit 40366aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/JakubOnderka/PhpConsoleHighlighter/Highlighter.php
Expand Up @@ -76,7 +76,7 @@ public function getWholeFile($source)
{
$tokenLines = $this->getHighlightedLines($source);
$lines = $this->colorLines($tokenLines);
return implode(PHP_EOL, $lines) . PHP_EOL;
return implode(PHP_EOL, $lines);
}

/**
Expand Down

0 comments on commit 40366aa

Please sign in to comment.