Completed
Push — master ( 58336c...b70419 )
by Lars
02:36 queued 45s
created
src/voku/cache/Cache.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -302,10 +302,10 @@  discard block
 block discarded – undo
302 302
     protected function getTheDefaultPrefix(): string
303 303
     {
304 304
         return ($_SERVER['SERVER_NAME'] ?? '') . '_' .
305
-               ($_SERVER['THEME'] ?? '') . '_' .
306
-               ($_SERVER['STAGE'] ?? '') . '_' .
307
-               ($_SESSION['language'] ?? '') . '_' .
308
-               ($_SESSION['language_extra'] ?? '');
305
+                ($_SERVER['THEME'] ?? '') . '_' .
306
+                ($_SERVER['STAGE'] ?? '') . '_' .
307
+                ($_SESSION['language'] ?? '') . '_' .
308
+                ($_SESSION['language_extra'] ?? '');
309 309
     }
310 310
 
311 311
     /**
@@ -699,7 +699,7 @@  discard block
 block discarded – undo
699 699
             &&
700 700
             \array_key_exists($storeKey, self::$STATIC_CACHE) === true
701 701
         ) {
702
-             unset(self::$STATIC_CACHE[$storeKey], self::$STATIC_CACHE_COUNTER[$storeKey], self::$STATIC_CACHE_EXPIRE[$storeKey]
702
+              unset(self::$STATIC_CACHE[$storeKey], self::$STATIC_CACHE_COUNTER[$storeKey], self::$STATIC_CACHE_EXPIRE[$storeKey]
703 703
             );
704 704
         }
705 705
 
Please login to merge, or discard this patch.