Exemplo n.º 1
0
 /**
  * Set the API key for this system
  *
  * @param mixed $key
  */
 public function setApiKey($key)
 {
     $this->api_key = $key;
     // Save it to the driver as well
     if ($this->_driver !== null) {
         $this->_driver->setApiKey($this->api_key);
     }
 }