| Total Complexity | 5 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 50 | class MockCacheKill implements ICache |
||
| 51 | { |
||
| 52 | public function init(string $what): void |
||
| 54 | } |
||
| 55 | |||
| 56 | public function exists(): bool |
||
| 57 | { |
||
| 58 | return true; |
||
| 59 | } |
||
| 60 | |||
| 61 | public function set(string $content): bool |
||
| 62 | { |
||
| 63 | return true; |
||
| 64 | } |
||
| 65 | |||
| 66 | public function get(): string |
||
| 67 | { |
||
| 68 | return ''; |
||
| 69 | } |
||
| 70 | |||
| 71 | public function clear(): void |
||
| 74 | } |
||
| 75 | } |
||
| 76 |