| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 12 | private function getEncryptionStats(array $inner = []) |
||
| 13 | { |
||
| 14 | return [ |
||
| 15 | Cache::STATS_HITS => $this->hits, |
||
| 16 | Cache::STATS_MISSES => $this->misses, |
||
| 17 | 'encryption_time' => $this->encryptionTime, |
||
| 18 | ] + $inner + [ |
||
| 19 | Cache::STATS_MEMORY_USAGE => null, |
||
| 20 | Cache::STATS_MEMORY_AVAILABLE => null, |
||
| 21 | ]; |
||
| 22 | } |
||
| 23 | |||
| 44 |