Skip to content

Commit

Permalink
Replace line indicator from "#" to ":".
Browse files Browse the repository at this point in the history
This allows IDE such as PHPStorm to create links to the appropriate line.
  • Loading branch information
tomzx committed May 3, 2015
1 parent bace13d commit 7639cfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PHPSemVerChecker/Reporter/Reporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
}

0 comments on commit 7639cfc

Please sign in to comment.