Skip to content

Commit

Permalink
Merge pull request #3 from DivineOmega/analysis-qJ922b
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
DivineOmega authored Feb 8, 2018
2 parents 1a92b0c + 2ccefc1 commit 9ba1693
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/PasswordExposedChecker.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class PasswordExposedChecker
private $client;
private $cache;

const CACHE_EXPIRY_SECONDS = 60*60*24*30;
const CACHE_EXPIRY_SECONDS = 60 * 60 * 24 * 30;

public function __construct()
{
Expand All @@ -19,9 +19,9 @@ public function __construct()
'timeout' => 3.0,
]);

$this->cache = new CacheItemPool;
$this->cache = new CacheItemPool();
$this->cache->changeConfig([
'cacheDirectory' => '/tmp/password-exposed-cache/'
'cacheDirectory' => '/tmp/password-exposed-cache/',
]);
}

Expand Down

0 comments on commit 9ba1693

Please sign in to comment.