From be8dc9d60fe786d179ca322ed663b1d0bf7ccd12 Mon Sep 17 00:00:00 2001 From: Mohamed Ashraf Date: Fri, 27 Sep 2013 08:35:38 +0200 Subject: [PATCH] Added missing doc block --- app/Model/Incident.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/Model/Incident.php b/app/Model/Incident.php index c5790616..67b73e4a 100644 --- a/app/Model/Incident.php +++ b/app/Model/Incident.php @@ -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) {