@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | */ |
| 23 | 23 | public function createKey($class, $id) |
| 24 | 24 | { |
| 25 | - return str_replace('\\', '-', $class) . '#' . $id; |
|
| 25 | + return str_replace('\\', '-', $class).'#'.$id; |
|
| 26 | 26 | } |
| 27 | 27 | |
| 28 | 28 | |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | */ |
| 37 | 37 | public function filename($key) |
| 38 | 38 | { |
| 39 | - return $this->config['basepath'] . '/' . $key; |
|
| 39 | + return $this->config['basepath'].'/'.$key; |
|
| 40 | 40 | } |
| 41 | 41 | |
| 42 | 42 | |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | */ |
| 121 | 121 | public function pruneAll() |
| 122 | 122 | { |
| 123 | - $files = glob($this->config['basepath'] . '/*'); |
|
| 123 | + $files = glob($this->config['basepath'].'/*'); |
|
| 124 | 124 | $items = count($files); |
| 125 | 125 | array_map('unlink', $files); |
| 126 | 126 | return $items; |