Skip to content

Commit

Permalink
fix bug related to ssl cainfo and capath
Browse files Browse the repository at this point in the history
  • Loading branch information
Phillip Shipley committed Feb 12, 2015
1 parent 005b8b4 commit 75ae41f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ApiAxle/Shared/Config.php
Expand Up @@ -131,8 +131,8 @@ public function setConfg($config)
$this->setKey(isset($config['key']) ? $config['key'] : false);
$this->setSecret(isset($config['secret']) ? $config['secret'] : false);
$this->setSslVerifypeer(isset($config['ssl_verifypeer']) ? $config['ssl_verifypeer'] : true);
$this->setSslCainfo(isset($config['ssl_cainfo']) ? $config['ssl_cainfo'] : true);
$this->setSslCapath(isset($config['ssl_capath']) ? $config['ssl_capath'] : true);
$this->setSslCainfo(isset($config['ssl_cainfo']) ? $config['ssl_cainfo'] : null);
$this->setSslCapath(isset($config['ssl_capath']) ? $config['ssl_capath'] : null);
$this->setProxyEnable(isset($config['proxy_enable']) ? $config['proxy_enable'] : false);
$this->setProxyHost(isset($config['proxy_host']) ? $config['proxy_host'] : null);
$this->setProxyPort(isset($config['proxy_port']) ? $config['proxy_port'] : null);
Expand Down

0 comments on commit 75ae41f

Please sign in to comment.