plausichecks: removed plausicheck lib, instead, methods are directly in the library for the fehler

This commit is contained in:
KarpAlex
2023-06-12 22:32:09 +02:00
parent c9c6955198
commit ab5dc7b1ac
54 changed files with 1763 additions and 1707 deletions
@@ -7,6 +7,7 @@ abstract class PlausiChecker
{
protected $_ci; // code igniter instance
protected $_config; // configuration parameters for this plausicheck
protected $_db; // database for queries
public function __construct($configurationParams = null)
{
@@ -15,8 +16,8 @@ abstract class PlausiChecker
// set configuration
$this->_config = $configurationParams;
// load libraries
$this->_ci->load->library('issues/PlausicheckLib'); // load plausicheck library
// get database for queries
$this->_db = new DB_Model();
}
/**