Example #1
0
 function __construct()
 {
     parent::__construct();
 }
Example #2
0
 /**
  * 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();
     }
 }