Skip to content

Commit

Permalink
Merge branch 'release/0.7.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Phillip Shipley committed Feb 12, 2015
2 parents 8a62610 + 75ae41f commit 155a752
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ApiAxle/Shared/Config.php
Original file line number Diff line number Diff line change
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 155a752

Please sign in to comment.