diff --git a/core/backgroundtask.class.inc.php b/core/backgroundtask.class.inc.php index 6ab6b7a11..ccfc1e628 100644 --- a/core/backgroundtask.class.inc.php +++ b/core/backgroundtask.class.inc.php @@ -31,7 +31,7 @@ class BackgroundTask extends DBObject /** * @return bool */ - public function IsDebug(): bool + public function IsDebug() { return $this->bDebug; } @@ -39,7 +39,7 @@ class BackgroundTask extends DBObject /** * @param bool $bDebug */ - public function SetDebug(bool $bDebug): void + public function SetDebug($bDebug) { $this->bDebug = $bDebug; }