From 7639cfc3a21abef3abac9ca9296cce23401f6143 Mon Sep 17 00:00:00 2001 From: Tom Rochette Date: Sun, 3 May 2015 15:23:12 -0400 Subject: [PATCH] Replace line indicator from "#" to ":". This allows IDE such as PHPStorm to create links to the appropriate line. --- src/PHPSemVerChecker/Reporter/Reporter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PHPSemVerChecker/Reporter/Reporter.php b/src/PHPSemVerChecker/Reporter/Reporter.php index f4a1e68..0c216b2 100644 --- a/src/PHPSemVerChecker/Reporter/Reporter.php +++ b/src/PHPSemVerChecker/Reporter/Reporter.php @@ -92,6 +92,6 @@ protected function getLocation(Operation $operation) } else { $location = str_replace($this->cwd . DIRECTORY_SEPARATOR, '', $operation->getLocation()); } - return $location . '#' . $operation->getLine(); + return $location . ':' . $operation->getLine(); } }