@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | self::$values = []; |
| 38 | 38 | self::$sha = sha1_file($filename); |
| 39 | 39 | |
| 40 | - $mapFile = self::getCacheDir(). DIRECTORY_SEPARATOR .self::$sha.'.php'; |
|
| 40 | + $mapFile = self::getCacheDir() . DIRECTORY_SEPARATOR . self::$sha . '.php'; |
|
| 41 | 41 | |
| 42 | 42 | if (false === file_exists($mapFile)) { |
| 43 | 43 | if (false === is_dir(self::getCacheDir())) { |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | */ |
| 72 | 72 | private static function getCacheDir() |
| 73 | 73 | { |
| 74 | - return (!empty(self::$cacheDir)) ? self::$cacheDir : __DIR__.'/../_cache'; |
|
| 74 | + return (!empty(self::$cacheDir)) ? self::$cacheDir : __DIR__ . '/../_cache'; |
|
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | /** |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | */ |
| 160 | 160 | private static function getApcuKey($id) |
| 161 | 161 | { |
| 162 | - return md5(self::$sha.'/'.$id); |
|
| 162 | + return md5(self::$sha . '/' . $id); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | /** |