Navigation Menu

Skip to content

Commit

Permalink
Added missing doc block
Browse files Browse the repository at this point in the history
  • Loading branch information
m0hamed committed Sep 27, 2013
1 parent 7456281 commit be8dc9d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions app/Model/Incident.php
Expand Up @@ -365,6 +365,12 @@ protected function _isSameStacktrace($stacktraceA, $stacktraceB) {
}
}

/**
* returns the hash pertaining to a stacktrace
*
* @param Array $stacktrace the stacktrace in question
* @return String the hash string of the stacktrace
*/
protected function _getStackHash($stacktrace) {
$handle = hash_init("md5");
foreach ($stacktrace as $level) {
Expand Down

0 comments on commit be8dc9d

Please sign in to comment.