Skip to content

Commit 7639cfc

Browse files
committed
Replace line indicator from "#" to ":".
This allows IDE such as PHPStorm to create links to the appropriate line.
1 parent bace13d commit 7639cfc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PHPSemVerChecker/Reporter/Reporter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,6 @@ protected function getLocation(Operation $operation)
9292
} else {
9393
$location = str_replace($this->cwd . DIRECTORY_SEPARATOR, '', $operation->getLocation());
9494
}
95-
return $location . '#' . $operation->getLine();
95+
return $location . ':' . $operation->getLine();
9696
}
9797
}

0 commit comments

Comments
 (0)