Skip to content

Commit 22c6fda

Browse files
committed
Further \n replacements with PHP_EOL.
1 parent 604d977 commit 22c6fda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PHPCtags.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ public function export()
412412
$end = microtime(true);
413413

414414
if ($this->mOptions['V']) {
415-
echo "It tooks ".($end-$start)." seconds.\n";
415+
echo "It tooks ".($end-$start)." seconds.".PHP_EOL;
416416
}
417417

418418
return $content;
@@ -451,7 +451,7 @@ private function process($file)
451451
try {
452452
$this->process_single_file($filename);
453453
} catch(Exception $e) {
454-
echo "\nPHPParser: {$e->getMessage()} - {$filename}\n";
454+
echo "PHPParser: {$e->getMessage()} - {$filename}".PHP_EOL;
455455
}
456456
}
457457
} else {

0 commit comments

Comments
 (0)