function __construct() { parent::__construct(); }
/** * Constructor * * Gets an instance of mysqli from the request registry and saves it to $this->mysqli */ function __construct() { if (!isset(self::$mysqli)) { self::$mysqli = RequestRegistry::getMySQLi(); } }