Completed
Push — master ( 042a70...c8fd93 )
by Georges
08:26
created
DataCollector/CacheCollector.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -46,26 +46,26 @@
 block discarded – undo
46 46
             }
47 47
             $stats[ $instanceName ] = $cache->getStats();
48 48
             $instances[ $instanceName ] = [
49
-              'driverName' => $cache->getDriverName(),
50
-              'driverConfig' => $cache->getConfig(),
49
+                'driverName' => $cache->getDriverName(),
50
+                'driverConfig' => $cache->getConfig(),
51 51
             ];
52 52
             $driverUsed[ $cache->getDriverName() ] = get_class($cache);
53 53
         }
54 54
 
55 55
         $this->data = [
56
-          'apiVersion' => phpFastCacheApi::getVersion(),
57
-          'apiChangelog' => phpFastCacheApi::getChangelog(),
58
-          'driverUsed' => $driverUsed,
59
-          'instances' => $instances,
60
-          'stats' => $stats,
61
-          'size' => $size,
62
-          'hits' => [
56
+            'apiVersion' => phpFastCacheApi::getVersion(),
57
+            'apiChangelog' => phpFastCacheApi::getChangelog(),
58
+            'driverUsed' => $driverUsed,
59
+            'instances' => $instances,
60
+            'stats' => $stats,
61
+            'size' => $size,
62
+            'hits' => [
63 63
             'read' => (int) CacheManager::$ReadHits,
64 64
             'write' => (int) CacheManager::$WriteHits,
65
-          ],
66
-          'coreConfig' => [
65
+            ],
66
+            'coreConfig' => [
67 67
             'namespacePath' => CacheManager::getNamespacePath()
68
-          ],
68
+            ],
69 69
         ];
70 70
     }
71 71
 
Please login to merge, or discard this patch.