3234 - php 5.6 compatibility

This commit is contained in:
acognet
2020-09-07 12:14:38 +02:00
parent dbada2f72a
commit 1e0415e902

View File

@@ -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;
}