Completed
Push — master ( b03125...a02e70 )
by Mikael
03:05
created
src/Cache/FileCache.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.