@@ -15,7 +15,6 @@ |
||
| 15 | 15 | namespace phpFastCache\Drivers\Wincache; |
| 16 | 16 | |
| 17 | 17 | use phpFastCache\Core\DriverAbstract; |
| 18 | -use phpFastCache\Core\StandardPsr6StructureTrait; |
|
| 19 | 18 | use phpFastCache\Entities\driverStatistic; |
| 20 | 19 | use phpFastCache\Exceptions\phpFastCacheDriverCheckException; |
| 21 | 20 | use phpFastCache\Exceptions\phpFastCacheDriverException; |
@@ -133,8 +133,8 @@ |
||
| 133 | 133 | $stats = (array) zend_shm_cache_info(); |
| 134 | 134 | return (new driverStatistic()) |
| 135 | 135 | ->setData(implode(', ', array_keys($this->namespaces))) |
| 136 | - ->setInfo(sprintf("The Zend memory have %d item(s) in cache.\n For more information see RawData.",$stats[ 'items_total' ])) |
|
| 136 | + ->setInfo(sprintf("The Zend memory have %d item(s) in cache.\n For more information see RawData.", $stats['items_total'])) |
|
| 137 | 137 | ->setRawData($stats) |
| 138 | - ->setSize($stats[ 'memory_total' ]); |
|
| 138 | + ->setSize($stats['memory_total']); |
|
| 139 | 139 | } |
| 140 | 140 | } |
| 141 | 141 | \ No newline at end of file |