@@ -46,26 +46,26 @@ |
||
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 |