getId() public method

Get the Error ID Code
public getId ( ) : string
return string the file's ID-code.
 function test_getId_withSlashes ()
 {
     $reporter = new BugReporter (2, "bad bad error", "/non-dir/file.php", 3, "Campsite", "2.5.0");
     $errId = $reporter->getId();
     $this->assertEqual($errId, "2:Campsite:2.5.0:file.php:3");
 }