Ejemplo n.º 1
0
 /**
  * Constructor.
  * @param null $db
  * @param null $config
  */
 public function __construct($db = null, $config = null)
 {
     // Set a name
     if ($db !== null) {
         $this->db = $db;
     } else {
         $this->db = 'default';
     }
     // Initialize a new DB object
     $this->db = Database_Init::instance((string) $this->db, $config);
 }