diff options
Diffstat (limited to 'lib/private/hintexception.php')
-rw-r--r-- | lib/private/hintexception.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/hintexception.php b/lib/private/hintexception.php index 3934ae2a4c2..3a8361e9e80 100644 --- a/lib/private/hintexception.php +++ b/lib/private/hintexception.php @@ -12,7 +12,7 @@ class HintException extends \Exception { private $hint; - public function __construct($message, $hint = '', $code = 0, Exception $previous = null) { + public function __construct($message, $hint = '', $code = 0, \Exception $previous = null) { $this->hint = $hint; parent::__construct($message, $code, $previous); } |