| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | 4 | public function getStats(): array |
|
| 44 | { |
||
| 45 | return [ |
||
| 46 | 4 | static::STATS_HITS => 0, |
|
| 47 | 4 | static::STATS_MISSES => $this->misses, |
|
| 48 | 4 | static::STATS_UPTIME => $this->creationTime->getTimestamp(), |
|
| 49 | 4 | static::STATS_MEMORY_USAGE => memory_get_usage(), |
|
| 50 | 4 | static::STATS_MEMORY_AVAILABLE => ini_get('memory_limit') - memory_get_usage(), |
|
| 51 | 4 | static::STATS_ITEM_COUNT => 0, |
|
| 52 | ]; |
||
| 53 | } |
||
| 54 | } |
||
| 55 |