]> git.datanom.net - omvzfs.git/commitdiff
Fixed OMVModuleZFSException class for basic usage
authorNiclas Berglind <nb@kjam.se>
Sun, 2 Mar 2014 13:38:13 +0000 (14:38 +0100)
committerMichael Rasmussen <mir@datanom.net>
Sun, 2 Mar 2014 22:58:08 +0000 (23:58 +0100)
Signed-off-by: Niclas Berglind <nb@kjam.se>
src/Exception.php

index 9195025f4d91d4dc43f065e96a8e445c8ce14827..2248146fc3b748a905bf3b35fa477d49f3027f4b 100644 (file)
@@ -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);
     }
 
 }
This page took 0.030817 seconds and 5 git commands to generate.