Skip to content

Commit

Permalink
Merge branch 'refactor-abstract-config-and-provider'
Browse files Browse the repository at this point in the history
  • Loading branch information
becker committed Feb 11, 2018
2 parents 95bffb4 + c1ce04b commit 2741e6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ZabbixApiAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public function __construct($apiUrl, $user, $password, $httpUser, $httpPassword,

$this->sslContext = $sslContext;

$this->verifySsl = $checkSsl;
$this->checkSsl = $checkSsl;

if ($httpUser && $httpPassword) {
$this->setBasicAuthorization($httpUser, $httpPassword);
Expand Down Expand Up @@ -245,7 +245,7 @@ public function request($method, $params=null, $resultArrayKey='', $auth=true)
if ($this->isSecure($this->apiUrl)) {
$ssl = array(
'ssl' => array(
'verify_peer' => $this->verifySsl
'verify_peer' => $this->checkSsl
)
);

Expand Down

0 comments on commit 2741e6e

Please sign in to comment.