diff options
Diffstat (limited to 'lib/private/app/codechecker/strongcomparisoncheck.php')
-rw-r--r-- | lib/private/app/codechecker/strongcomparisoncheck.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/private/app/codechecker/strongcomparisoncheck.php b/lib/private/app/codechecker/strongcomparisoncheck.php index bfbde1acbef..7de0fe3e5c3 100644 --- a/lib/private/app/codechecker/strongcomparisoncheck.php +++ b/lib/private/app/codechecker/strongcomparisoncheck.php @@ -35,10 +35,12 @@ class StrongComparisonCheck implements ICheck { } /** + * @param int $errorCode + * @param string $errorObject * @return string */ - public function getDescription() { - return $this->check->getDescription(); + public function getDescription($errorCode, $errorObject) { + return $this->check->getDescription($errorCode, $errorObject); } /** |