Example #1
0
 function __construct($db, $table)
 {
     $this->table = $table;
     parent::__construct($db, $this->table);
 }
Example #2
0
 function __construct($table, $db)
 {
     $this->db = $db;
     $this->table = $table;
     parent::__construct($db, $this->table);
 }