Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Jul 19, 2014
1 parent da1f9d1 commit 839c2c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SensioLabs/Security/SecurityChecker.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class SecurityChecker
{
private $endPoint = 'https://security.sensiolabs.org/check_lock';
private $vulnerabilitiesCount;
private $vulnerabilityCount;
private $timeout = 20;

public function setTimeout($timeout)
Expand Down Expand Up @@ -151,13 +151,13 @@ public function check($lock, $format = 'text')
throw new \RuntimeException('The web service did not return alerts count.');
}

$this->vulnerabilitiesCount = intval($matches[1]);
$this->vulnerabilityCount = intval($matches[1]);

return $body;
}

public function getLastVulnerabilityCount()
{
return $this->vulnerabilitiesCount;
return $this->vulnerabilityCount;
}
}

0 comments on commit 839c2c0

Please sign in to comment.