| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 54 | public function onSet($key, $entry) |
||
| 55 | { |
||
| 56 | $logEntry = new LogEntry( |
||
| 57 | new DateTimeImmutable(date('Y-m-d H:i:s'), new DateTimeZone('UTC')), |
||
| 58 | LogEntry::SEVERITY_INFO, |
||
| 59 | 'Cache Entry with key '.$key.' was set into cache pool' |
||
| 60 | ); |
||
| 61 | |||
| 62 | $this->logger->log($logEntry); |
||
| 63 | |||
| 64 | return $entry; |
||
| 65 | } |
||
| 67 |