From 0b8607f9f7b3e7778ad526b331b548e680b958c5 Mon Sep 17 00:00:00 2001 From: Niclas Berglind Date: Sun, 2 Mar 2014 14:38:13 +0100 Subject: [PATCH] Fixed OMVModuleZFSException class for basic usage Signed-off-by: Niclas Berglind --- src/Exception.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Exception.php b/src/Exception.php index 9195025..2248146 100644 --- a/src/Exception.php +++ b/src/Exception.php @@ -17,8 +17,8 @@ class OMVModuleZFSException extends Exception { * @return void XXX * @access public */ - public function __construct(string $message = "", int $code = 0, Exception $previous = NULL) { - parent::__construct(string $message = "", int $code = 0, Exception $previous = NULL); + public function __construct($message = "", $code = 0, Exception $previous = NULL) { + parent::__construct($message, $code, $previous); } } -- 2.39.2