Example #1
0
 public function __construct($options = array())
 {
     $options['table'] = $this->table;
     $options['key'] = $this->key;
     parent::__construct($options);
 }
Example #2
0
 public function __construct($options)
 {
     $this->api = isset($options['api']) ? $options['api'] : true;
     parent::__construct(array('table' => $this->table, 'key' => $this->key));
 }
 public function __construct($table)
 {
     $this->table = $table;
     parent::__construct(array('table' => $this->table, 'key' => $this->key));
 }