From 2ccefc1f9df8a3c559ef5e9ffb53d506e89b70a0 Mon Sep 17 00:00:00 2001 From: Jordan Hall Date: Thu, 8 Feb 2018 16:04:14 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/PasswordExposedChecker.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/PasswordExposedChecker.php b/src/PasswordExposedChecker.php index 88fa221..3e6a073 100644 --- a/src/PasswordExposedChecker.php +++ b/src/PasswordExposedChecker.php @@ -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() { @@ -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/', ]); }