Esempio n. 1
0
 public function __construct($api_key = null, $private_key = null)
 {
     $this->config = Gengo_Config::getInstance();
     if (!is_null($api_key)) {
         $this->config->api_key = $api_key;
     }
     if (!is_null($private_key)) {
         $this->config->private_key = $private_key;
     }
     $this->client = Gengo_Client::getInstance();
     $this->response = null;
 }