@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | $this->serializer = new SerializerIgbinary(); |
41 | 41 | |
42 | 42 | if (!$cacheDir) { |
43 | - $cacheDir = realpath(sys_get_temp_dir()) . '/simple_php_cache'; |
|
43 | + $cacheDir = realpath(sys_get_temp_dir()).'/simple_php_cache'; |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | $this->cacheDir = (string)$cacheDir; |
@@ -223,7 +223,7 @@ discard block |
||
223 | 223 | */ |
224 | 224 | protected function getFileName($key) |
225 | 225 | { |
226 | - return $this->cacheDir . DIRECTORY_SEPARATOR . self::CACHE_FILE_PREFIX . $key . self::CACHE_FILE_SUBFIX; |
|
226 | + return $this->cacheDir.DIRECTORY_SEPARATOR.self::CACHE_FILE_PREFIX.$key.self::CACHE_FILE_SUBFIX; |
|
227 | 227 | } |
228 | 228 | |
229 | 229 | /** |