Completed
Push — master ( 2e23cf...730f80 )
by Lars
03:00
created
src/voku/cache/AdapterOpCache.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      */
75 75
     protected function getFileName(string $key): string
76 76
     {
77
-        return $this->cacheDir . \DIRECTORY_SEPARATOR . self::CACHE_FILE_PREFIX . $key . '.php';
77
+        return $this->cacheDir.\DIRECTORY_SEPARATOR.self::CACHE_FILE_PREFIX.$key.'.php';
78 78
     }
79 79
 
80 80
     /**
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
         ];
89 89
         $content = \Symfony\Component\VarExporter\VarExporter::export($item);
90 90
 
91
-        $content = '<?php return ' . $content . ';';
91
+        $content = '<?php return '.$content.';';
92 92
 
93 93
         $cacheFile = $this->getFileName($key);
94 94
 
Please login to merge, or discard this patch.