@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | mkdir(self::getCacheDir(), 0755, true); |
| 43 | 43 | } |
| 44 | 44 | |
| 45 | - file_put_contents($sha1file, '<?php return unserialize(\''. serialize($cachedMap) .'\');' . PHP_EOL); |
|
| 45 | + file_put_contents($sha1file, '<?php return unserialize(\'' . serialize($cachedMap) . '\');' . PHP_EOL); |
|
| 46 | 46 | } |
| 47 | 47 | } |
| 48 | 48 | |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | */ |
| 67 | 67 | private static function getCacheDir() |
| 68 | 68 | { |
| 69 | - return __DIR__.'/../_cache/'; |
|
| 69 | + return __DIR__ . '/../_cache/'; |
|
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | /** |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | */ |
| 75 | 75 | private static function getCacheFilePath() |
| 76 | 76 | { |
| 77 | - return self::getCacheDir() . sha1_file(self::$filename) .'.php'; |
|
| 77 | + return self::getCacheDir() . sha1_file(self::$filename) . '.php'; |
|
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | /** |