allow to pass in the used Db object

This commit is contained in:
ralf 2023-12-07 20:37:09 +02:00
parent 7052803700
commit 522f438025

View File

@ -2,11 +2,11 @@
/**
* EGroupware API - Timed Asynchron Services
*
* @link http://www.egroupware.org
* @link https://www.egroupware.org
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
* @copyright Ralf Becker <RalfBecker-AT-outdoor-training.de>
*
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @license https://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package api
* @access public
*/
@ -47,10 +47,16 @@ class Asyncservice
/**
* constructor of the class
*
* @param ?Db $db
*/
function __construct()
function __construct(Db $db=null)
{
if (is_object($GLOBALS['egw']->db))
if (isset($db))
{
$this->db = $db;
}
elseif (is_object($GLOBALS['egw']->db))
{
$this->db = $GLOBALS['egw']->db;
}